C:
char c = '\u0F99';
printf("%c\n", c); // Output: ྙ
JavaScript:
const char = '\u0F99';
console.log(char); // Output: ྙ
Java:
char c = '\u0F99';
System.out.println(c); // Output: ྙ
JSON:
{"text": "\u0F99"} // Value: ྙ
Python:
char = '\u0F99'
print(char) # Output: ྙ
Perl:
my $char = "\x{0F99}";
print $char; # Output: ྙ
PHP:
$char = "\x{0F99}";
echo $char; // Output: ྙ
Ruby:
char = "\u{0F99}"
puts char # Output: ྙ
Rust:
let c = '\u{F99}';
println!("{}", c); // Output: ྙ
Go:
char := '\u0F99'
fmt.Printf("%c\n", char) // Output: ྙ
CSS:
/* CSS content property */
.element::before {
content: "\000F99"; /* 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%BE%99
MD5:
964a440a762073d6ef83c0f4b002dda6
SHA1:
dcfa71b156e89c2e4235a5dd4c7e2468dc0bf645
Base64:
4L6Z