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