I'm currently utilizing Standard Numeric Format Strings for the purpose of formatting pricing on my webpage, as detailed in this resource.
Dim price As Integer = 378
Dim s As String = (CDec(price) / 100).ToString("F")
The above code results in a string "3,78", which I display in HTML.
Nevertheless, what I am aiming to achieve is to have the decimal part "78" displayed in superscript using a combination of HTML and CSS. Is there any way I can accomplish this?