use unicode characters inside an SVG embeded as data uri in an image - HTML CSS SVG

HTML CSS examples for SVG:Image

Description

use unicode characters inside an SVG embeded as data uri in an image

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">

img { width: 200px; height: 200px; }


      </style> 
 </head> <!--from  w ww .j a v  a  2s  .  c  o m-->
 <body> 
  <img src="https://www.java2s.com/style/demo/Google-Chrome.png">  
 </body>
</html>

Related Tutorials