<?php $dom = new DOMDocument(); $html = "<!DOCTYPE html><html><head><meta charset=utf-8><style>span::before{ content: \"⚡️\"; }</style></head><body><span></span></body></html>"; $html = mb_convert_encoding($html, 'HTML-ENTITIES', 'UTF-8'); $dom->loadHTML( $html ); echo $dom->saveHTML( $dom->documentElement ); echo "\n\n"; echo $dom->saveHTML();
You have javascript disabled. You will not be able to edit any code.