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