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