<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" backgroundColor="white" viewSourceURL="srcview/index.html">

	<mx:Script>
		<![CDATA[
			[Bindable]
			private var charCode:Number = "&".charCodeAt();
		]]>
	</mx:Script>

	<mx:Label text="@ = {'@'.charCodeAt()}" />
	<mx:Label text="&amp; = {charCode}" />
	
</mx:Application>

