C:
char c = '\u6940';
printf("%c\n", c); // Output: 楀
JavaScript:
const char = '\u6940';
console.log(char); // Output: 楀
Java:
char c = '\u6940';
System.out.println(c); // Output: 楀
JSON:
{"text": "\u6940"} // Value: 楀
Python:
char = '\u6940'
print(char) # Output: 楀
Perl:
my $char = "\x{6940}";
print $char; # Output: 楀
PHP:
$char = "\x{6940}";
echo $char; // Output: 楀
Ruby:
char = "\u{6940}"
puts char # Output: 楀
Rust:
let c = '\u{6940}';
println!("{}", c); // Output: 楀
Go:
char := '\u6940'
fmt.Printf("%c\n", char) // Output: 楀
CSS:
/* CSS content property */
.element::before {
content: "\006940"; /* 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%A5%80
MD5:
6763ec36ce8ca3834977d568f0d6d6ed
SHA1:
cc7c62bd8cb70323d0f98a49b61eef627670da71
Base64:
5qWA