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