How to Add Special Characters in WordPress Posts

171

Ever wondered how popular sites add trademark ™, copyright ©, registered ®, or currency characters into their articles? Recently one of our users asked us if there was an easy way to add special characters into WordPress posts and pages. Since these characters are not found on an average keyboard, it makes it difficult for beginners to to use them. In this article, we will show you how to add special characters in WordPress posts.

Adding Special Characters Using WordPress Visual Editor

WordPress comes with a built-in WYSIWYG visual editor to write posts and pages. It’s a nice tool for beginners to write their articles without writing any HTML or CSS (see our 14 tips for mastering the visual editor). It also has a button which allows you to add special characters anywhere in your WordPress posts or pages.

Video Tutorial

Subscribe to WPBeginner

If you don’t like the video or need more instructions, then continue reading.

First you need to click on the kitchen sink button. This will expand a second row of formatting options where you should see the Special Characters button.

Special Characters button in WordPress visual editor

Clicking on special characters button will bring up a pop-up window showing some commonly used special characters. It has currency symbols, trademark, copyright, registered signs, mathematical symbols and signs.

Special characters table in WordPress post editor

Now you need to just click on the symbol or character you want to use, and it will be added in your post.

Adding Special Characters Using Unicode HTML Entities

Unlike Visual Editor, the text editor in WordPress does not have a special characters button. This means you will have to write the HTML entity code to add special characters.

Each character has an HTML entity number assigned to it. For example, 1 has HTML entity number 1. Same goes for just about any character in almost any language. However, remembering these HTML entity numbers is not an easy task.

To solve this problem, most commonly used special characters have HTML entity names. These names are easy to remember due to their similarity to the real word used for these characters. For example, copyright sign has HTML entity name copy, trademark uses trade, and registered symbol uses reg as HTML entity name.

To add these signs you need to append them with an ampersand sign & and end with a semicolon. See the examples below:

© = ©
™ =
® = ®
€ =

To find out the HTML entity for any character or symbol, you can refer to the character entity reference chart on W3.org website.

We hope this article helped you add special characters in WordPress posts.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Google+.