{"id":3592,"date":"2025-02-15T14:52:19","date_gmt":"2025-02-15T14:52:19","guid":{"rendered":"https:\/\/s-o-s.net\/insert-special-characters\/"},"modified":"2025-02-15T14:52:19","modified_gmt":"2025-02-15T14:52:19","slug":"insert-special-characters","status":"publish","type":"post","link":"https:\/\/s-o-s.net\/en_gb\/insert-special-characters\/","title":{"rendered":"Insert Special Characters"},"content":{"rendered":"<p> <br \/>\n<\/p>\n<article id=\"post-108078\" class=\"alignwide post-108078 plugin type-plugin status-publish hentry plugin_tags-block plugin_tags-character-map plugin_tags-gutenberg plugin_tags-omega plugin_tags-special-characters plugin_contributors-10up plugin_contributors-adamsilverstein plugin_contributors-jeffpaul plugin_contributors-johnwatkins0 plugin_business_model-community plugin_committers-10up plugin_committers-10upbot plugin_support_reps-ankit-k-gupta plugin_support_reps-dharm1025 plugin_support_reps-dkotter plugin_support_reps-faisal03 plugin_support_reps-jeffpaul plugin_support_reps-nomnom99 plugin_support_reps-peterwilsoncc plugin_support_reps-sumitbagthariya16\">\n<div class=\"plugin-banner\" id=\"plugin-banner-insert-special-characters\"><\/div>\n<header class=\"plugin-header\">\n<div class=\"entry-heading-container\">\n<div>\n<div class=\"entry-thumbnail\">\n\t\t\t\t\t<img decoding=\"async\" class=\"plugin-icon\" srcset=\"https:\/\/ps.w.org\/insert-special-characters\/assets\/icon-128x128.png?rev=2584551, https:\/\/ps.w.org\/insert-special-characters\/assets\/icon-256x256.png?rev=2584551 2x\" src=\"https:\/\/ps.w.org\/insert-special-characters\/assets\/icon-256x256.png?rev=2584551\" alt=\"\">\t\t\t\t<\/div>\n<div>\n<h1 class=\"plugin-title\">Insert Special Characters<\/h1>\n<p>\t\t\t\t\t<span class=\"byline\">By <span class=\"author vcard\"><a target=\"_blank\" class=\"url fn n\" href=\"https:\/\/profiles.wordpress.org\/10up\/\" rel=\"noopener\">10up<\/a><\/span><\/span>\n\t\t\t\t<\/div>\n<\/p><\/div>\n<div class=\"plugin-actions\">\n<div class=\"wp-block-button is-small plugin-download download-button\"><a target=\"_blank\" class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/downloads.wordpress.org\/plugin\/insert-special-characters.1.1.3.zip\" rel=\"noopener\">Download<\/a><\/div>\n<div class=\"wp-block-button is-small is-style-outline plugin-preview download-button is-style-outline--9\"><a target=\"_blank\" class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/wordpress.org\/plugins\/insert-special-characters\/?preview=1\" rel=\"noopener\">Live Preview<\/a><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/header>\n<p><!-- .entry-header --><\/p>\n<p>\t<span id=\"description\"><\/span><br \/>\n\t<span id=\"reviews\"><\/span><br \/>\n\t<span id=\"installation\"><\/span><br \/>\n\t<span id=\"developers\"><\/span><br \/>\n\t<span id=\"advanced\" class=\"\"><\/span><br \/>\n\t<span id=\"section-links\"><\/p>\n<ul class=\"tabs clear\">\n<li id=\"tablink-description\"><a target=\"_blank\" href=\"https:\/\/wordpress.org\/plugins\/insert-special-characters\/#description\" rel=\"noopener\">Details<\/a><\/li>\n<li id=\"tablink-reviews\"><a target=\"_blank\" href=\"https:\/\/wordpress.org\/plugins\/insert-special-characters\/#reviews\" rel=\"noopener\">Reviews<\/a><\/li>\n<li id=\"tablink-installation\">\n\t\t\t\t<a target=\"_blank\" href=\"https:\/\/wordpress.org\/plugins\/insert-special-characters\/#installation\" rel=\"noopener\">Installation<\/a>\n\t\t\t<\/li>\n<li id=\"tablink-developers\"><a target=\"_blank\" href=\"https:\/\/wordpress.org\/plugins\/insert-special-characters\/#developers\" rel=\"noopener\">Development<\/a><\/li>\n<\/ul>\n<div id=\"link-support\">\n\t\t\t<a target=\"_blank\" href=\"https:\/\/wordpress.org\/support\/plugin\/insert-special-characters\/\" rel=\"noopener\">Support<\/a>\n\t\t<\/div>\n<p>\t<\/span><br \/>\n\t<script type=\"text\/javascript\">if ( '#changelog' == window.location.hash ) { window.setTimeout( function() { window.location.hash=\"#developers\"; }, 10 ); }<\/script><\/p>\n<div class=\"entry-content\">\n<div id=\"tab-description\" class=\"plugin-description section\">\n<h2 id=\"description-header\">Description<\/h2>\n<p>Ever wanted to add a special character while working within the WordPress block editor (Gutenberg) and suddenly find yourself longing for the days of the Classic Editor and the Special Character inserter? Well long no more, the Insert Special Characters plugin is here to ease your publishing woes!<\/p>\n<p><strong>Note:<\/strong> you can display the popover via the <code>ctrl<\/code>\/<code>cmd<\/code> + <code>o<\/code> keyboard shortcut.<\/p>\n<p>Development takes place in the <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\" rel=\"nofollow ugc noopener\">GitHub repository<\/a>.<\/p>\n<h3>Technical Notes<\/h3>\n<ul>\n<li>Requires PHP 7.4+.<\/li>\n<li>Requires <a target=\"_blank\" href=\"https:\/\/wordpress.org\/\" rel=\"ugc noopener\">WordPress<\/a> 6.5+<\/li>\n<li>Issues and Pull requests welcome in the <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\" rel=\"nofollow ugc noopener\">GitHub repository<\/a>.<\/li>\n<\/ul>\n<h3>Extending<\/h3>\n<p>To control the available tabs and characters, developers can filter the data set using the <code>insertspecialcharacters-characters<\/code> JavaScript (<code>wp.hooks<\/code>) filter.<\/p>\n<p>For example, to create a character inserter that only provides currency symbols:<\/p>\n<pre><code>wp.hooks.addFilter(\n    'insertspecialcharacters-characters',  \/\/ The filter name.\n    'mycallback', \/\/ Our callback namespace.\n    function( component ) { \/\/ The callback function.\n\n        \/\/ Return the categories\/characters to display.\n        \/\/ The data structure is: { category: [ character data ], category2: ... }\n        return {\n            \"Currency\": [\n                { \"entity\": \"&amp;dollar;\", \"hex\": \"&amp;#0024;\", \"name\": \"Dollar Sign\", \"char\": \"$\" },\n                { \"entity\": \"&amp;euro;\", \"hex\": \"&amp;#20AC;\", \"name\": \"Euro Sign\", \"char\": \"\u20ac\" },\n                { \"entity\": \"&amp;cent;\", \"hex\": \"&amp;#00A2;\", \"name\": \"Cent Sign\", \"char\": \"\u00a2\" },\n                { \"entity\": \"&amp;pound;\", \"hex\": \"&amp;#00A3;\", \"name\": \"Pound Sign\", \"char\": \"\u00a3\" },\n                { \"entity\": \"&amp;yen;\", \"hex\": \"&amp;#00A5;\", \"name\": \"Yen Sign\", \"char\": \"\u00a5\" },\n            ]\n        };\n    }\n);\n<\/code><\/pre>\n<\/div>\n<div id=\"screenshots\" class=\"plugin-screenshots section\">\n<h2 id=\"screenshots-header\">Screenshots<\/h2>\n<ul class=\"plugin-screenshots\">\n<li>\n<figure><a target=\"_blank\" href=\"https:\/\/ps.w.org\/insert-special-characters\/assets\/screenshot-1.gif?rev=2861411\" rel=\"nofollow noopener\"><img decoding=\"async\" class=\"screenshot\" src=\"https:\/\/ps.w.org\/insert-special-characters\/assets\/screenshot-1.gif?rev=2861411\" alt=\"\"><\/a><figcaption>Example of special characters selection in the Block Editor.<\/figcaption><\/figure>\n<\/li>\n<li>\n<figure><a target=\"_blank\" href=\"https:\/\/ps.w.org\/insert-special-characters\/assets\/screenshot-2.png?rev=2861411\" rel=\"nofollow noopener\"><img decoding=\"async\" class=\"screenshot\" src=\"https:\/\/ps.w.org\/insert-special-characters\/assets\/screenshot-2.png?rev=2861411\" alt=\"\"><\/a><figcaption>\u201cSpecial Characters\u201d option in Paragraph Block menu.<\/figcaption><\/figure>\n<\/li>\n<li>\n<figure><a target=\"_blank\" href=\"https:\/\/ps.w.org\/insert-special-characters\/assets\/screenshot-3.png?rev=2861411\" rel=\"nofollow noopener\"><img decoding=\"async\" class=\"screenshot\" src=\"https:\/\/ps.w.org\/insert-special-characters\/assets\/screenshot-3.png?rev=2861411\" alt=\"\"><\/a><figcaption>Initial special characters, showing the \u201cMath\u201d character set.<\/figcaption><\/figure>\n<\/li>\n<li>\n<figure><a target=\"_blank\" href=\"https:\/\/ps.w.org\/insert-special-characters\/assets\/screenshot-4.png?rev=2861411\" rel=\"nofollow noopener\"><img decoding=\"async\" class=\"screenshot\" src=\"https:\/\/ps.w.org\/insert-special-characters\/assets\/screenshot-4.png?rev=2861411\" alt=\"\"><\/a><figcaption>Filtering the special characters via search.<\/figcaption><\/figure>\n<\/li>\n<li>\n<figure><a target=\"_blank\" href=\"https:\/\/ps.w.org\/insert-special-characters\/assets\/screenshot-5.png?rev=2861411\" rel=\"nofollow noopener\"><img decoding=\"async\" class=\"screenshot\" src=\"https:\/\/ps.w.org\/insert-special-characters\/assets\/screenshot-5.png?rev=2861411\" alt=\"\"><\/a><figcaption>Resulting inserted special character (note focus on special character, rest of window has been blurred).<\/figcaption><\/figure>\n<\/li>\n<\/ul>\n<\/div>\n<div id=\"tab-installation\" class=\"plugin-installation section\">\n<h2 id=\"installation-header\">Installation<\/h2>\n<ol>\n<li>Install the plugin via the plugin installer, either by searching for it or uploading a .zip file.<\/li>\n<li>Activate the plugin.<\/li>\n<li>Use Insert Special Characters!<\/li>\n<\/ol>\n<\/div>\n<div id=\"faq\" class=\"plugin-faq section\">\n<h2 id=\"faq-header\">FAQ<\/h2>\n<dl>\n<dt id=\"how%20come%20i%20do%20not%20see%20all%20the%20special%20characters%3F\">\n<h3>How come I do not see all the special characters?<\/h3>\n<\/dt>\n<dd>\n<p>When a character is displayed using a font that doesn\u2019t support that character, a default \u201cnot defined\u201d glyph from that font is used. The \u201cnot defined\u201d glyph in most fonts has the appearance of a rectangular box, or some variation of that.<\/p>\n<p>One example of a font with support for wide range of glyphs is the <a target=\"_blank\" href=\"https:\/\/fonts.google.com\/noto\" rel=\"nofollow ugc noopener\">Noto<\/a> family by Google Fonts, which can be loaded by the theme to render the missing characters.<\/p>\n<\/dd>\n<\/dl>\n<\/div>\n<div id=\"tab-reviews\" class=\"plugin-reviews section\">\n<h2 id=\"reviews-header\">Reviews<\/h2>\n<div class=\"plugin-reviews\">\n<article class=\"plugin-review\">\n<div class=\"review-avatar\">\n\t\t\t\t\t\t<img decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/6cf8040f8e170318572d8c24c2d3b69dc2280c695b283d8bb6d9a260a5dce242?s=60&amp;d=retro&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/6cf8040f8e170318572d8c24c2d3b69dc2280c695b283d8bb6d9a260a5dce242?s=120&amp;d=retro&amp;r=g 2x\" class=\"avatar avatar-60 photo\" height=\"60\" width=\"60\">\t\t\t\t\t<\/div>\n<div class=\"review\">\n<header>\n<div class=\"header-top\">\n<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><\/div>\n<h3 class=\"review-title\"><a target=\"_blank\" class=\"url\" href=\"https:\/\/wordpress.org\/support\/topic\/easy-and-useful-162\/\" rel=\"noopener\">Easy and useful<\/a><\/h3>\n<\/p><\/div>\n<div class=\"header-bottom\">\n\t\t\t\t\t\t\t\t<span class=\"review-author author vcard\"><a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/olistic\/\" title=\"Posts by olistic\" rel=\"author noopener\">olistic<\/a><\/span><br \/>\n\t\t\t\t\t\t\t\t<span class=\"review-date\">November 4, 2024<\/span><br \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"review-replies\">1 reply<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n<\/header>\n<div class=\"review-content\">Easy and useful. I like it!<\/div>\n<\/p><\/div>\n<\/article>\n<article class=\"plugin-review\">\n<div class=\"review-avatar\">\n\t\t\t\t\t\t<img decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/175f0c7952efe9d5949ddc6e87aeb817b0b320e5a8deb893b8746a484229574b?s=60&amp;d=retro&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/175f0c7952efe9d5949ddc6e87aeb817b0b320e5a8deb893b8746a484229574b?s=120&amp;d=retro&amp;r=g 2x\" class=\"avatar avatar-60 photo\" height=\"60\" width=\"60\">\t\t\t\t\t<\/div>\n<div class=\"review\">\n<header>\n<div class=\"header-top\">\n<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><\/div>\n<h3 class=\"review-title\"><a target=\"_blank\" class=\"url\" href=\"https:\/\/wordpress.org\/support\/topic\/my-new-favorite-plugin-does-just-what-i-need-it-to-do\/\" rel=\"noopener\">My new favorite plugin! Does just what I need it to do<\/a><\/h3>\n<\/p><\/div>\n<div class=\"header-bottom\">\n\t\t\t\t\t\t\t\t<span class=\"review-author author vcard\"><a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/lonelypilgrim\/\" title=\"Posts by LonelyPilgrim\" rel=\"author noopener\">LonelyPilgrim<\/a><\/span><br \/>\n\t\t\t\t\t\t\t\t<span class=\"review-date\">June 21, 2024<\/span><br \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"review-replies\">1 reply<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n<\/header>\n<div class=\"review-content\">As a lover of em dashes, en dashes, diacritics, and typography and Unicode in general, and a pedant for using the precise, proper characters where they are appropriate, this plugin does exactly what I need it to do. It works very similarly to the insert-special-characters feature of MediaWiki\u2019s VisualEditor plugin, which I also love. Bravo for this, and please keep up the good work.<\/div>\n<\/p><\/div>\n<\/article>\n<article class=\"plugin-review\">\n<div class=\"review-avatar\">\n\t\t\t\t\t\t<img decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/c51a500ca5a32505dd906501fc40e7a6f339031c0b5579b5a38fe01ba6682cda?s=60&amp;d=retro&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/c51a500ca5a32505dd906501fc40e7a6f339031c0b5579b5a38fe01ba6682cda?s=120&amp;d=retro&amp;r=g 2x\" class=\"avatar avatar-60 photo\" height=\"60\" width=\"60\">\t\t\t\t\t<\/div>\n<div class=\"review\">\n<header>\n<div class=\"header-top\">\n<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><\/div>\n<h3 class=\"review-title\"><a target=\"_blank\" class=\"url\" href=\"https:\/\/wordpress.org\/support\/topic\/dingbats-are-back\/\" rel=\"noopener\">Dingbats are back!<\/a><\/h3>\n<\/p><\/div>\n<div class=\"header-bottom\">\n\t\t\t\t\t\t\t\t<span class=\"review-author author vcard\"><a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/chazdesimone\/\" title=\"Posts by Chaz DeSimone\" rel=\"author noopener\">Chaz DeSimone<\/a><\/span><br \/>\n\t\t\t\t\t\t\t\t<span class=\"review-date\">October 7, 2020<\/span><br \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"review-replies\">1 reply<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n<\/header>\n<div class=\"review-content\">THANK YOU! I am a typographer from way back when I was hand-setting (and pieing \u2014 the term for spilling) little pieces of metal in the forms of letters, numbers &amp; dingbats. Special Characters is the WordPress feature I have missed most in Gutenberg, and your plugin is the first &amp; only that makes inserting Special Characters easy and enjoyable. Look for a donation from this old type lover! \u2764<\/div>\n<\/p><\/div>\n<\/article>\n<article class=\"plugin-review\">\n<div class=\"review-avatar\">\n\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/44fa64c314958042d5b1b03f39e4daf73e8f7adc7b4cbc92f8f10614c009534e?s=60&amp;d=retro&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/44fa64c314958042d5b1b03f39e4daf73e8f7adc7b4cbc92f8f10614c009534e?s=120&amp;d=retro&amp;r=g 2x\" class=\"avatar avatar-60 photo\" height=\"60\" width=\"60\">\t\t\t\t\t<\/div>\n<div class=\"review\">\n<header>\n<div class=\"header-top\">\n<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><\/div>\n<h3 class=\"review-title\"><a target=\"_blank\" class=\"url\" href=\"https:\/\/wordpress.org\/support\/topic\/much-needed-24\/\" rel=\"noopener\">Much needed!<\/a><\/h3>\n<\/p><\/div>\n<div class=\"header-bottom\">\n\t\t\t\t\t\t\t\t<span class=\"review-author author vcard\"><a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/burnuser\/\" title=\"Posts by burnuser\" rel=\"author noopener\">burnuser<\/a><\/span><br \/>\n\t\t\t\t\t\t\t\t<span class=\"review-date\">October 28, 2019<\/span><br \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"review-replies\">1 reply<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n<\/header>\n<div class=\"review-content\">Thank You!<br \/>\nIt solves a big problem in Gutenberg, which misses this function!<\/div>\n<\/p><\/div>\n<\/article>\n<article class=\"plugin-review\">\n<div class=\"review-avatar\">\n\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/128ac83cc932f5991435aca62c1b903164b5d75d262cf27b88fbe90677795528?s=60&amp;d=retro&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/128ac83cc932f5991435aca62c1b903164b5d75d262cf27b88fbe90677795528?s=120&amp;d=retro&amp;r=g 2x\" class=\"avatar avatar-60 photo\" height=\"60\" width=\"60\">\t\t\t\t\t<\/div>\n<div class=\"review\">\n<header>\n<div class=\"header-top\">\n<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><\/div>\n<h3 class=\"review-title\"><a target=\"_blank\" class=\"url\" href=\"https:\/\/wordpress.org\/support\/topic\/thank-you-works-perfectly-4\/\" rel=\"noopener\">Thank You! Works perfectly!<\/a><\/h3>\n<\/p><\/div>\n<div class=\"header-bottom\">\n\t\t\t\t\t\t\t\t<span class=\"review-author author vcard\"><a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/goddessprojects\/\" title=\"Posts by GoddessNYC\" rel=\"author noopener\">GoddessNYC<\/a><\/span><br \/>\n\t\t\t\t\t\t\t\t<span class=\"review-date\">October 3, 2019<\/span><br \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"review-replies\">1 reply<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n<\/header>\n<div class=\"review-content\">Thank you for this great plugin!<\/p>\n<p>WHY special characters are STILL absent from the Gutenberg WordPress editor \u2014 though it has been requested numerous times \u2014 is quite the annoyance.<\/p>\n<p>This plugin is perfect!<\/p>\n<p>Thanks again!<\/p><\/div>\n<\/p><\/div>\n<\/article>\n<article class=\"plugin-review\">\n<div class=\"review-avatar\">\n\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/a1855d8dce4d4924eb12fa4d7291eb1ae3eb13e13508fec179f129a885815e82?s=60&amp;d=retro&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/a1855d8dce4d4924eb12fa4d7291eb1ae3eb13e13508fec179f129a885815e82?s=120&amp;d=retro&amp;r=g 2x\" class=\"avatar avatar-60 photo\" height=\"60\" width=\"60\">\t\t\t\t\t<\/div>\n<div class=\"review\">\n<header>\n<div class=\"header-top\">\n<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><\/div>\n<h3 class=\"review-title\"><a target=\"_blank\" class=\"url\" href=\"https:\/\/wordpress.org\/support\/topic\/excellent-8053\/\" rel=\"noopener\">Excellent!<\/a><\/h3>\n<\/p><\/div>\n<div class=\"header-bottom\">\n\t\t\t\t\t\t\t\t<span class=\"review-author author vcard\"><a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/stevepalmeratwordpress\/\" title=\"Posts by Steve P (UK)\" rel=\"author noopener\">Steve P (UK)<\/a><\/span><br \/>\n\t\t\t\t\t\t\t\t<span class=\"review-date\">September 1, 2019<\/span><br \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"review-replies\">1 reply<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n<\/header>\n<div class=\"review-content\">This is perfect for me. Thanks for developing it!If there was an option to move it to the main toolbar without the need to use the dropdown, it would be a six-star product<\/div>\n<\/p><\/div>\n<\/article><\/div>\n<p>\t\t<a target=\"_blank\" class=\"reviews-link\" href=\"https:\/\/wordpress.org\/support\/plugin\/insert-special-characters\/reviews\/\" rel=\"noopener\"><br \/>\n\t\t\tRead all 8 reviews\t\t<\/a><\/div>\n<div id=\"tab-developers\" class=\"plugin-developers section\">\n<h2 id=\"developers-header\">Contributors &amp; Developers<\/h2>\n<div class=\"plugin-contributors\">\n<p>\u201cInsert Special Characters\u201d is open source software. The following people have contributed to this plugin.<\/p>\n<p><span class=\"screen-reader-text\">Contributors<\/span><\/p>\n<ul id=\"contributors-list\" class=\"contributors-list\">\n<li>\n\t\t\t\t<img loading=\"lazy\" decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/a23224a610fd2e01327438b5faab5749d7afe5bb8a888ca23e7ab751824e5458?s=32&amp;d=mm&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/a23224a610fd2e01327438b5faab5749d7afe5bb8a888ca23e7ab751824e5458?s=64&amp;d=mm&amp;r=g 2x\" class=\"avatar avatar-32 photo\" height=\"32\" width=\"32\">\t\t\t\t<a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/10up\/\" rel=\"noopener\"><br \/>\n\t\t\t\t\t10up\t\t\t\t<\/a>\n\t\t\t<\/li>\n<li>\n\t\t\t\t<img loading=\"lazy\" decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/82e095c8bc229017b128e53940ea534aa31f6624431bedee24c7e8756e42dd1c?s=32&amp;d=mm&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/82e095c8bc229017b128e53940ea534aa31f6624431bedee24c7e8756e42dd1c?s=64&amp;d=mm&amp;r=g 2x\" class=\"avatar avatar-32 photo\" height=\"32\" width=\"32\">\t\t\t\t<a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/adamsilverstein\/\" rel=\"noopener\"><br \/>\n\t\t\t\t\tAdam Silverstein\t\t\t\t<\/a>\n\t\t\t<\/li>\n<li>\n\t\t\t\t<img loading=\"lazy\" decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/f2832cb99441a94aba290f1ddd45c8984bc163e244365cb7a04587eca29357ac?s=32&amp;d=mm&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/f2832cb99441a94aba290f1ddd45c8984bc163e244365cb7a04587eca29357ac?s=64&amp;d=mm&amp;r=g 2x\" class=\"avatar avatar-32 photo\" height=\"32\" width=\"32\">\t\t\t\t<a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/johnwatkins0\/\" rel=\"noopener\"><br \/>\n\t\t\t\t\tJohn Watkins\t\t\t\t<\/a>\n\t\t\t<\/li>\n<li>\n\t\t\t\t<img loading=\"lazy\" decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/c95de1e6c222121175c2c0dddf4631d2ea45704938f53332d12710379c6153e6?s=32&amp;d=mm&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/c95de1e6c222121175c2c0dddf4631d2ea45704938f53332d12710379c6153e6?s=64&amp;d=mm&amp;r=g 2x\" class=\"avatar avatar-32 photo\" height=\"32\" width=\"32\">\t\t\t\t<a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/jeffpaul\/\" rel=\"noopener\"><br \/>\n\t\t\t\t\tJeffrey Paul\t\t\t\t<\/a>\n\t\t\t<\/li>\n<\/ul><\/div>\n<div class=\"plugin-development\">\n<p>\u201cInsert Special Characters\u201d has been translated into 5 locales. Thank you to <a target=\"_blank\" href=\"https:\/\/translate.wordpress.org\/projects\/wp-plugins\/insert-special-characters\/contributors\" rel=\"noopener\">the translators<\/a> for their contributions.<\/p>\n<p><a target=\"_blank\" href=\"https:\/\/translate.wordpress.org\/projects\/wp-plugins\/insert-special-characters\" rel=\"noopener\">Translate \u201cInsert Special Characters\u201d into your language.<\/a><\/p>\n<h3>Interested in development?<\/h3>\n<p><a target=\"_blank\" href=\"https:\/\/plugins.trac.wordpress.org\/browser\/insert-special-characters\/\" rel=\"noopener\" class=\"broken_link\">Browse the code<\/a>, check out the <a target=\"_blank\" href=\"https:\/\/plugins.svn.wordpress.org\/insert-special-characters\/\" rel=\"noopener\">SVN repository<\/a>, or subscribe to the <a target=\"_blank\" href=\"https:\/\/plugins.trac.wordpress.org\/log\/insert-special-characters\/\" rel=\"noopener\" class=\"broken_link\">development log<\/a> by <a target=\"_blank\" href=\"https:\/\/plugins.trac.wordpress.org\/log\/insert-special-characters\/?limit=100&amp;mode=stop_on_copy&amp;format=rss\" rel=\"noopener\" class=\"broken_link\">RSS<\/a>.<\/p>\n<\/div>\n<\/div>\n<div id=\"tab-changelog\" class=\"plugin-changelog section\">\n<h2 id=\"changelog-header\">Changelog<\/h2>\n<h4>1.1.3 \u2013 2024-11-18<\/h4>\n<ul>\n<li><strong>Changed:<\/strong> Update the UI to be more consistent with WordPress core props (<a target=\"_blank\" href=\"https:\/\/github.com\/psorensen\" rel=\"nofollow ugc noopener\">@psorensen<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/fabiankaegy\" rel=\"nofollow ugc noopener\">@fabiankaegy<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/263\" rel=\"nofollow ugc noopener\">#263<\/a>).<\/li>\n<li><strong>Changed:<\/strong> Clean up NPM dependencies and update node to v20 (props <a target=\"_blank\" href=\"https:\/\/github.com\/Sidsector9\" rel=\"nofollow ugc noopener\">@Sidsector9<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/dkotter\" rel=\"nofollow ugc noopener\">@dkotter<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/238\" rel=\"nofollow ugc noopener\">#238<\/a>).<\/li>\n<li><strong>Changed:<\/strong> Bump WordPress \u201ctested up to\u201d version 6.7 (props <a target=\"_blank\" href=\"https:\/\/github.com\/sudip-md\" rel=\"nofollow ugc noopener\">@sudip-md<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/sonali886\" rel=\"nofollow ugc noopener\">@sonali886<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/godleman\" rel=\"nofollow ugc noopener\">@godleman<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/jeffpaul\" rel=\"nofollow ugc noopener\">@jeffpaul<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/dkotter\" rel=\"nofollow ugc noopener\">@dkotter<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/260\" rel=\"nofollow ugc noopener\">#260<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/261\" rel=\"nofollow ugc noopener\">#261<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/273\" rel=\"nofollow ugc noopener\">#273<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/274\" rel=\"nofollow ugc noopener\">#274<\/a>).<\/li>\n<li><strong>Security:<\/strong> Bump <code>express<\/code> from 4.18.2 to 4.19.2, <code>follow-redirects<\/code> from 1.15.5 to 1.15.6, <code>ip<\/code> from 1.1.8 to 1.1.9 and <code>webpack-dev-middleware<\/code> from 5.3.3 to 5.3.4 (props <a target=\"_blank\" href=\"https:\/\/github.com\/apps\/dependabot\" rel=\"nofollow ugc noopener\">@dependabot<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/iamdharmesh\" rel=\"nofollow ugc noopener\">@iamdharmesh<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/254\" rel=\"nofollow ugc noopener\">#254<\/a>).<\/li>\n<li><strong>Security:<\/strong> Bump <code>braces<\/code> from 3.0.2 to 3.0.3, <code>pac-resolver<\/code> from 7.0.0 to 7.0.1, <code>socks<\/code> from 2.7.1 to 2.8.3, <code>ws<\/code> from 7.59 to 7.5.10 and removes <code>ip<\/code> (props <a target=\"_blank\" href=\"https:\/\/github.com\/apps\/dependabot\" rel=\"nofollow ugc noopener\">@dependabot<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/faisal-alvi\" rel=\"nofollow ugc noopener\">@faisal-alvi<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/259\" rel=\"nofollow ugc noopener\">#259<\/a>).<\/li>\n<li><strong>Security:<\/strong> Bump <code>axios<\/code> from 1.6.7 to 1.7.7, <code>body-parser<\/code> from 1.20.2 to 1.20.3, <code>express<\/code> from 4.19.2 to 4.21.0, <code>ws<\/code> from 7.5.10 to 8.18.0, <code>@wordpress\/scripts<\/code> from 27.1.0 to 29.0.0 and <code>webpack<\/code> from 5.90.0 to 5.94.0 (props <a target=\"_blank\" href=\"https:\/\/github.com\/apps\/dependabot\" rel=\"nofollow ugc noopener\">@dependabot<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/Sidsector9\" rel=\"nofollow ugc noopener\">@Sidsector9<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/267\" rel=\"nofollow ugc noopener\">#267<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/268\" rel=\"nofollow ugc noopener\">#268<\/a>).<\/li>\n<\/ul>\n<h4>1.1.2 \u2013 2024-01-08<\/h4>\n<ul>\n<li><strong>Added:<\/strong> Support for the WordPress.org plugin preview (props <a target=\"_blank\" href=\"https:\/\/github.com\/dkotter\" rel=\"nofollow ugc noopener\">@dkotter<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/jeffpaul\" rel=\"nofollow ugc noopener\">@jeffpaul<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/232\" rel=\"nofollow ugc noopener\">#232<\/a>).<\/li>\n<li><strong>Fixed:<\/strong> Issue with blocks crashing due to faux caret (props <a target=\"_blank\" href=\"https:\/\/github.com\/Sidsector9\" rel=\"nofollow ugc noopener\">@Sidsector9<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/dkotter\" rel=\"nofollow ugc noopener\">@dkotter<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/ankitguptaindia\" rel=\"nofollow ugc noopener\">@ankitguptaindia<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/225\" rel=\"nofollow ugc noopener\">#225<\/a>).<\/li>\n<li><strong>Fixed:<\/strong> Issue with characters added to the beginning trimming text from the end (props <a target=\"_blank\" href=\"https:\/\/github.com\/Sidsector9\" rel=\"nofollow ugc noopener\">@Sidsector9<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/dkotter\" rel=\"nofollow ugc noopener\">@dkotter<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/ankitguptaindia\" rel=\"nofollow ugc noopener\">@ankitguptaindia<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/225\" rel=\"nofollow ugc noopener\">#225<\/a>).<\/li>\n<li><strong>Changed:<\/strong> Bump WordPress \u201ctested up to\u201d version to 6.4 (props <a target=\"_blank\" href=\"https:\/\/github.com\/qasumitbagthariya\" rel=\"nofollow ugc noopener\">@qasumitbagthariya<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/jeffpaul\" rel=\"nofollow ugc noopener\">@jeffpaul<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/QAharshalkadu\" rel=\"nofollow ugc noopener\">@QAharshalkadu<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/ankitguptaindia\" rel=\"nofollow ugc noopener\">@ankitguptaindia<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/dhanendran\" rel=\"nofollow ugc noopener\">@dhanendran<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/iamdharmesh\" rel=\"nofollow ugc noopener\">@iamdharmesh<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/228\" rel=\"nofollow ugc noopener\">#228<\/a>).<\/li>\n<\/ul>\n<h4>1.1.1 \u2013 2023-10-17<\/h4>\n<ul>\n<li><strong>Fixed:<\/strong> Address an issue where some blocks would crash due to a missing attribute (props <a target=\"_blank\" href=\"https:\/\/github.com\/dkotter\" rel=\"nofollow ugc noopener\">@dkotter<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/221\" rel=\"nofollow ugc noopener\">#221<\/a>).<\/li>\n<li><strong>Security:<\/strong> Bump <code>@babel\/traverse<\/code> from 7.20.5 to 7.23.2 (props <a target=\"_blank\" href=\"https:\/\/github.com\/apps\/dependabot\" rel=\"nofollow ugc noopener\">@dependabot<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/dkotter\" rel=\"nofollow ugc noopener\">@dkotter<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/219\" rel=\"nofollow ugc noopener\">#219<\/a>).<\/li>\n<\/ul>\n<h4>1.1.0 \u2013 2023-10-16<\/h4>\n<ul>\n<li><strong>Added:<\/strong> Show a faux cursor to preserve context (props <a target=\"_blank\" href=\"https:\/\/github.com\/Sidsector9\" rel=\"nofollow ugc noopener\">@Sidsector9<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/helen\" rel=\"nofollow ugc noopener\">@helen<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/ravinderk\" rel=\"nofollow ugc noopener\">@ravinderk<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/207\" rel=\"nofollow ugc noopener\">#207<\/a>).<\/li>\n<li><strong>Added:<\/strong> Check for minimum required PHP version before loading the plugin (props <a target=\"_blank\" href=\"https:\/\/github.com\/kmgalanakis\" rel=\"nofollow ugc noopener\">@kmgalanakis<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/peterwilsoncc\" rel=\"nofollow ugc noopener\">@peterwilsoncc<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/210\" rel=\"nofollow ugc noopener\">#210<\/a>).<\/li>\n<li><strong>Changed:<\/strong> Bump WordPress \u201ctested up to\u201d version to 6.3 (props <a target=\"_blank\" href=\"https:\/\/github.com\/kmgalanakis\" rel=\"nofollow ugc noopener\">@kmgalanakis<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/jeffpaul\" rel=\"nofollow ugc noopener\">@jeffpaul<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/peterwilsoncc\" rel=\"nofollow ugc noopener\">@peterwilsoncc<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/212\" rel=\"nofollow ugc noopener\">#212<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/215\" rel=\"nofollow ugc noopener\">#215<\/a>).<\/li>\n<li><strong>Fixed:<\/strong> Ensure that when highlighting a special character, the block doesn\u2019t crash (props <a target=\"_blank\" href=\"https:\/\/github.com\/jrmd\" rel=\"nofollow ugc noopener\">@jrmd<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/dkotter\" rel=\"nofollow ugc noopener\">@dkotter<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/204\" rel=\"nofollow ugc noopener\">#204<\/a>).<\/li>\n<li><strong>Security:<\/strong> Bump <code>semver<\/code> from 5.7.1 to 5.7.2 (props <a target=\"_blank\" href=\"https:\/\/github.com\/apps\/dependabot\" rel=\"nofollow ugc noopener\">@dependabot<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/dkotter\" rel=\"nofollow ugc noopener\">@dkotter<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/202\" rel=\"nofollow ugc noopener\">#202<\/a>).<\/li>\n<li><strong>Security:<\/strong> Bump <code>word-wrap<\/code> from 1.2.3 to 1.2.4 (props <a target=\"_blank\" href=\"https:\/\/github.com\/apps\/dependabot\" rel=\"nofollow ugc noopener\">@dependabot<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/Sidsector9\" rel=\"nofollow ugc noopener\">@Sidsector9<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/206\" rel=\"nofollow ugc noopener\">#206<\/a>).<\/li>\n<li><strong>Security:<\/strong> Bump <code>@cypress\/request<\/code> from 2.88.10 to 3.0.0, <code>cypress<\/code> from 12.8.1 to 13.3.1 and <code><a class='bp-suggestions-mention' href='https:\/\/s-o-s.net\/en_gb\/members\/10up\/' rel='nofollow'>@10up<\/a>\/cypress-wp-utils<\/code> from 0.1.0 to 0.2.0 (props <a target=\"_blank\" href=\"https:\/\/github.com\/apps\/dependabot\" rel=\"nofollow ugc noopener\">@dependabot<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/dkotter\" rel=\"nofollow ugc noopener\">@dkotter<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/213\" rel=\"nofollow ugc noopener\">#213<\/a>).<\/li>\n<li><strong>Security:<\/strong> Bump <code>tough-cookie<\/code> from 4.1.2 to 4.1.3 and <code>@cypress\/request<\/code> from 2.88.10 to 2.88.12 (props <a target=\"_blank\" href=\"https:\/\/github.com\/apps\/dependabot\" rel=\"nofollow ugc noopener\">@dependabot<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/ravinderk\" rel=\"nofollow ugc noopener\">@ravinderk<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/214\" rel=\"nofollow ugc noopener\">#214<\/a>).<\/li>\n<li><strong>Security:<\/strong> Bump <code>postcss<\/code> from 8.4.20 to 8.4.31 (props <a target=\"_blank\" href=\"https:\/\/github.com\/apps\/dependabot\" rel=\"nofollow ugc noopener\">@dependabot<\/a>, <a target=\"_blank\" href=\"https:\/\/github.com\/faisal-alvi\" rel=\"nofollow ugc noopener\">@faisal-alvi<\/a> via <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/pull\/216\" rel=\"nofollow ugc noopener\">#216<\/a>).<\/li>\n<\/ul>\n<p>Further changelog entries can be found in the <a target=\"_blank\" href=\"https:\/\/github.com\/10up\/insert-special-characters\/blob\/trunk\/CHANGELOG.md\" rel=\"nofollow ugc noopener\">CHANGELOG.md<\/a> file.<\/p>\n<\/div><\/div>\n<p><!-- .entry-content --><\/p>\n<p>\t<!-- .entry-meta --><br \/>\n<\/article>\n<p><br \/>\n<br \/><a href=\"https:\/\/wordpress.org\/plugins\/insert-special-characters\/\" target=\"_blank\" rel=\"noopener\">Source link <\/a><\/p>","protected":false},"excerpt":{"rendered":"<p>Insert Special Characters By 10up Download Live Preview Details Reviews Installation Development Support Description Ever wanted to add a special character while working within the WordPress block editor (Gutenberg) and suddenly find yourself longing for the days of the Classic Editor and the Special Character inserter? Well long no more, the Insert Special Characters plugin [&hellip;]<\/p>","protected":false},"author":32,"featured_media":3593,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"give_campaign_id":0,"footnotes":""},"categories":[1933,39,40],"tags":[2450,2183,2449],"class_list":["post-3592","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-community-plugin","category-lite-version","category-wp-plugin-solution","tag-characters","tag-insert","tag-special"],"acf":[],"fifu_image_url":"https:\/\/ps.w.org\/insert-special-characters\/assets\/banner-772x250.png?rev=2584551","_links":{"self":[{"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/posts\/3592","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/users\/32"}],"replies":[{"embeddable":true,"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/comments?post=3592"}],"version-history":[{"count":0,"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/posts\/3592\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/media\/3593"}],"wp:attachment":[{"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/media?parent=3592"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/categories?post=3592"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/tags?post=3592"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}