is “hyphenate-character” supported?
HTML
<html lang="en">
<p id="auto">Auto All human be­ings are bo­rn fr­ee and eq­ual in­ dignity a­nd rights. They a­re end­owed with re­ason and consc­ience and ­should act to­wards one anothe­r in a spirit of brotherhood.</p>
<p id="string">String. All human be­ings are bo­rn fr­ee and eq­ual in­ dignity a­nd rights. They a­re end­owed with re­ason and consc­ience and ­should act to­wards one anothe­r</p>
</html>
CSS
p {
width: 17em;
border: 1px solid red;
text-align: justify;
font-size: 1.25em;
font-family: monospace;
}
#auto {
-webkit-hyphens: manual;
-moz-hyphens: manual;
-ms-hyphens: manual;
-o-hyphens: manual;
hyphens: auto;
/*-webkit-hyphenate-character: auto;
-moz-hyphenate-character: auto;
-ms-hyphenate-character: auto;
hyphenate-character: auto;*/
}
#string {
-webkit-hyphens: manual;
-moz-hyphens: manual;
-ms-hyphens: manual;
-o-hyphens: manual;
hyphens: manual;
-webkit-hyphenate-character: "♥";
-moz-hyphenate-character: "♥";
-ms-hyphenate-character: "♥";
hyphenate-character: "♥";
}