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