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