Use windows 8 default icon set outside appbar

html, windows-8

Solution

To be more accurate, this code replicates the same behavior & design, and also supports the icon label below:

<button class="win-command win-global win-hidefocus" id="btnCamera" role="menuitem" aria-label="Camera" type="button">
    <span tabindex="-1" class="win-commandicon win-commandring" aria-hidden="true">
        <span tabindex="-1" class="win-commandimage" aria-hidden="true">&#xE114;</span>
    </span>
    <span tabindex="-1" class="win-label" aria-hidden="true">Front Camera</span>
</button>

Problem

Is it possible to use the windows 8 (javascript) icons which can be used in the app bar outside of the appbar as well?

Original source