Skip to main content

300 Cool Facebook Symbols Which Are Swanky


Here’s a treat for all the Facebook geeks, who want more to express, comment, remark and tease. The collection you 300 cool Facebook symbols will just let you do that. Find out new Facebook chat emoticon codes and symbols to enhance your expression on the Facebook chat.
The cool collection of Facebook symbols include both rare ones and popular symbols and shapes to add to your kitty of chat exclusives. Wait no further and be the first among your friends to use new symbols in your status, comments and messages.
If you like this article, you might be interested in some of our other articles on Heart Symbols On Facebook, Free Facebook Timeline Covers, Thumbs Up Symbols and Facebook Scripts.
^◡^<:3 )~Σ$_$(✿◠‿◠)Ƹ̴Ӂ̴Ʒ
((|̲̅̅●̲̅̅|̲̅̅=̲̅̅|̲̅̅●̲̅̅|))
๑۩๑@(ᵕ.ᵕ)@
@};—:’(
:’<:”<
☜♡☞웃❤유<:(≧❂◡❂≦=☽≧◠◡◠≦✌
◄.►↢ ↣≧◔◡◔≦
<:-(≧◉◡◉≦
©٩(●̮̮̃•)۶
ಠ_ರೃ®≧✯◡✯≦
(¬‿¬)
ϟ
|:-)
:-)..^.^..zZzzZZЖB=D
;)‘Ω’
;-)๏̯̃๏<:'-(
ͼ(ݓ_ݓ)ͽ〷◠‿◠〷
>:=@
/╯﹏╰\
@>–;–^o^:-*(╥﹏╥)
➳♥ϟ
۞
Ұ
ΔΩʊ
¼
<
£½؟
¢
¥

Comments

Popular posts from this blog

75 Surprisingly Creative Facebook Timeline Covers

Now that you have shifted to “Facebook Timeline” to display you profile in a better way, get creative with it. Facebook timeline gives you a chance to turn you profile exclusive and innovative. Putting up a personal picture as cover, will only make you look outdated. You can try some exciting covers to design your very own Facebook profile in distinguished style. We have scrounged through web to pick 75 amazing Facebook Timeline covers for this list. Unique cover pictures can give your timeline a different-from-the-rest look. You can create your own creative covers picking ideas from these cool pictures listed below. If you like this article, you might be interested in some of our other articles on  Facebook Scripts, Best Facebook Apps, Best Facebook Games, and Facebook Tips You Should Check . Ekkapong Techawongthaworn Be a brand ambassador and flaunt your fanaticism for gadgets and shopping on your cover. Ekkapong Techawongthaworn Gabriel Fort A snapshot of an App...

PHP File Upload

With PHP, it is possible to upload files to the server. Create an Upload-File Form To allow users to upload files from a form can be very useful. Look at the following HTML form for uploading files: <html> <body> <form action="upload_file.php" method="post" enctype="multipart/form-data"> <label for="file">Filename:</label> <input type="file" name="file" id="file" /> <br /> <input type="submit" name="submit" value="Submit" /> </form> </body> </html> Notice the following about the HTML form above: The enctype attribute of the <form> tag specifies which content-type to use when submitting the form. "multipart/form-data" is used when a form requires binary data, like the contents of a file, to be uploaded The type="file" attribute of the <input> tag specifies that the input sho...

Send Mail using mail function in PHP

$to = "admin@user.vn"; $subject = "User.vn"; $body = "Body of your message here you can use HTML too. e.g. <br> <b> Bold </b>"; $headers = "From: Peter"; $headers .= "Reply-To:  info@yoursite.com "; $headers .= "Return-Path: mailto:info@yoursite.com"; $headers .= "X-Mailer:PHP5"; $headers .= 'MIME-Version: 1.0"; $headers .= 'Content-type: text/html; charset=iso-8859-1"; mail($to,$subject,$body,$headers);