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