C:
char c = '\u6A40';
printf("%c\n", c); // Output: 橀
JavaScript:
const char = '\u6A40';
console.log(char); // Output: 橀
Java:
char c = '\u6A40';
System.out.println(c); // Output: 橀
JSON:
{"text": "\u6A40"} // Value: 橀
Python:
char = '\u6A40'
print(char) # Output: 橀
Perl:
my $char = "\x{6A40}";
print $char; # Output: 橀
PHP:
$char = "\x{6A40}";
echo $char; // Output: 橀
Ruby:
char = "\u{6A40}"
puts char # Output: 橀
Rust:
let c = '\u{6A40}';
println!("{}", c); // Output: 橀
Go:
char := '\u6A40'
fmt.Printf("%c\n", char) // Output: 橀
CSS:
/* CSS content property */
.element::before {
content: "\006A40"; /* 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=%E6%A9%80
MD5:
5917ebe597232694e74892dd54dd7f8c
SHA1:
b6491604a19bb3508cb3c78d1fc7bb93454311e4
Base64:
5qmA