Title: HTML-Entity
Last modified: July 19, 2019

---

# HTML-Entity

 *  Resolved [enkirch](https://wordpress.org/support/users/enkirch/)
 * (@enkirch)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/html-entity/)
 * Hi,
    i want to place HTML-Entity in the table.
 * Right now, the HTML-Entity getting “converted” to the “normal Character”.
 * &#196 turns into an Ä. But i want to show the &#196
    -  This topic was modified 6 years, 10 months ago by [enkirch](https://wordpress.org/support/users/enkirch/).
    -  This topic was modified 6 years, 10 months ago by [enkirch](https://wordpress.org/support/users/enkirch/).
    -  This topic was modified 6 years, 10 months ago by [enkirch](https://wordpress.org/support/users/enkirch/).

Viewing 1 replies (of 1 total)

 *  Plugin Author [Johann Heyne](https://wordpress.org/support/users/jonua/)
 * (@jonua)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/html-entity/#post-11750699)
 * Good question. There is no way to write and keep HTML-Entities. I would go with
   a shortcode. [entity code=”196″]. Do you know how to write a shortcode? See [https://codex.wordpress.org/Shortcode_API](https://codex.wordpress.org/Shortcode_API)
 * Put this to functions.php
 *     ```
       add_shortcode( 'entity', function( $atts ) {
       	$a = shortcode_atts( array(
       		'code' => '',
       	), $atts );
   
       	return '&#' . $a['code'] . ';';
       } );
       ```
   
 * Use `echo do_shortcode( $td['c'] );` to echo a table cells content.
 * Cheers,
    Johann

Viewing 1 replies (of 1 total)

The topic ‘HTML-Entity’ is closed to new replies.

 * ![](https://ps.w.org/advanced-custom-fields-table-field/assets/icon-256x256.png?
   rev=1962986)
 * [Table Field Add-on for ACF and SCF](https://wordpress.org/plugins/advanced-custom-fields-table-field/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/advanced-custom-fields-table-field/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/advanced-custom-fields-table-field/)
 * [Active Topics](https://wordpress.org/support/plugin/advanced-custom-fields-table-field/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/advanced-custom-fields-table-field/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/advanced-custom-fields-table-field/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Johann Heyne](https://wordpress.org/support/users/jonua/)
 * Last activity: [6 years, 10 months ago](https://wordpress.org/support/topic/html-entity/#post-11750699)
 * Status: resolved