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