Assuming you mean the emoticons found in various forums, you simply replace the ASCII emoticon with an HTML element imgon the server side. The result will look like this:
<p>This is a paragraph <img src="wink.png" alt=";)"></p>
In most cases, this is achieved using, for example, PHP str_replace.
source
share