C:
char c = '\u6961';
printf("%c\n", c); // Output: 楡
JavaScript:
const char = '\u6961';
console.log(char); // Output: 楡
Java:
char c = '\u6961';
System.out.println(c); // Output: 楡
JSON:
{"text": "\u6961"} // Value: 楡
Python:
char = '\u6961'
print(char) # Output: 楡
Perl:
my $char = "\x{6961}";
print $char; # Output: 楡
PHP:
$char = "\x{6961}";
echo $char; // Output: 楡
Ruby:
char = "\u{6961}"
puts char # Output: 楡
Rust:
let c = '\u{6961}';
println!("{}", c); // Output: 楡
Go:
char := '\u6961'
fmt.Printf("%c\n", char) // Output: 楡
CSS:
/* CSS content property */
.element::before {
content: "\006961"; /* 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%A1
MD5:
eb14bd8e486ccea1745b81c4457bb6f1
SHA1:
9d90b3737827d069b1237e120af6fe3b25c722e9
Base64:
5qWh