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