# How to use the symbol "&"?

**URL:** https://forum.kirupa.com/t/how-to-use-the-symbol/102399
**Category:** Uncategorized
**Created:** [February 23, 2004, 2:15pm UTC](https://forum.kirupa.com/t/how-to-use-the-symbol/102399 "2004-02-23T14:15:33Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![brandao](https://avatars.discourse-cdn.com/v4/letter/b/5fc32e/32.png) [@brandao](https://forum.kirupa.com/u/brandao)
#### Post date: [February 23, 2004, 2:15pm UTC](https://forum.kirupa.com/t/how-to-use-the-symbol/102399/1 "2004-02-23T14:15:33Z")

</div>

:red:

When loading text from an external text file, we define in that same text file each textfields’s value by doing something like that:

textfield1=this text  
&textfield2=that text  
&textfield3=another text

Because we use the symbol “&” to “annouce” the contents of ANOTHER text field, it doesn’t work to use something like:

&textfield4=Doing business with Smith&Son is great

The only text that would display would be “Doing business with Smith” because right after that come the symbol &!!!

Is there any way I can use this symbol “&”? :h:

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [February 23, 2004, 2:24pm UTC](https://forum.kirupa.com/t/how-to-use-the-symbol/102399/2 "2004-02-23T14:24:19Z")

</div>

You must urlencode your & character: %26. Otherwise Flash will interpret it as another variable being declared. So your text would look like this:

&textfield4=Doing business with Smith%26Son is great

🙂

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [February 23, 2004, 2:33pm UTC](https://forum.kirupa.com/t/how-to-use-the-symbol/102399/3 "2004-02-23T14:33:08Z")

</div>

Thanks Voetsjoeba

You save my day! 😃

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [February 23, 2004, 2:35pm UTC](https://forum.kirupa.com/t/how-to-use-the-symbol/102399/4 "2004-02-23T14:35:44Z")

</div>

do you know where I can get a listing of the this “URLencodings”?

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [February 23, 2004, 2:40pm UTC](https://forum.kirupa.com/t/how-to-use-the-symbol/102399/5 "2004-02-23T14:40:41Z")

</div>

[http://www.w3schools.com/html/html\_ref\_urlencode.asp](http://www.w3schools.com/html/html_ref_urlencode.asp) 🙂
