Allen Wirfs-Brock (2013-10-18T23:15:05.000Z)
On Oct 18, 2013, at 4:01 PM, Allen Wirfs-Brock wrote:

> 
> On Oct 18, 2013, at 1:29 PM, Allen Wirfs-Brock wrote:
>> 
>> Array.from( '𝌆𝌆𝌆'))[1]
> 
> maybe even better:
> 
> Uint32Array.from( '𝌆𝌆𝌆'))[1]

err...maybe not if you want a string value:

String.fromCodePoint(Uint32Array.from( '𝌆𝌆𝌆')[1])
domenic at domenicdenicola.com (2013-10-26T02:59:36.756Z)
err...maybe not if you want a string value:

```js
String.fromCodePoint(Uint32Array.from( '𝌆𝌆𝌆')[1])
```