C:
char c = '\u0F58';
printf("%c\n", c); // Output: མ
JavaScript:
const char = '\u0F58';
console.log(char); // Output: མ
Java:
char c = '\u0F58';
System.out.println(c); // Output: མ
JSON:
{"text": "\u0F58"} // Value: མ
Python:
char = '\u0F58'
print(char) # Output: མ
Perl:
my $char = "\x{0F58}";
print $char; # Output: མ
PHP:
$char = "\x{0F58}";
echo $char; // Output: མ
Ruby:
char = "\u{0F58}"
puts char # Output: མ
Rust:
let c = '\u{F58}';
println!("{}", c); // Output: མ
Go:
char := '\u0F58'
fmt.Printf("%c\n", char) // Output: མ
CSS:
/* CSS content property */
.element::before {
content: "\000F58"; /* Display: མ */
}
HTML Decimal:
<p>HTML decimal: མ</p> <!-- Display: མ -->
HTML Hexadecimal:
<p>HTML hex: མ</p> <!-- Display: མ -->
URL Encoding:
// མ URL encoding
https://unicodefinder.com/search.php?query=%E0%BD%98
MD5:
a5981166148702208840af98c62ecba6
SHA1:
336910d95ff95161902eaaa69d2191910c95f876
Base64:
4L2Y