C:
char c = '\u6A1F';
printf("%c\n", c); // Output: 樟
JavaScript:
const char = '\u6A1F';
console.log(char); // Output: 樟
Java:
char c = '\u6A1F';
System.out.println(c); // Output: 樟
JSON:
{"text": "\u6A1F"} // Value: 樟
Python:
char = '\u6A1F'
print(char) # Output: 樟
Perl:
my $char = "\x{6A1F}";
print $char; # Output: 樟
PHP:
$char = "\x{6A1F}";
echo $char; // Output: 樟
Ruby:
char = "\u{6A1F}"
puts char # Output: 樟
Rust:
let c = '\u{6A1F}';
println!("{}", c); // Output: 樟
Go:
char := '\u6A1F'
fmt.Printf("%c\n", char) // Output: 樟
CSS:
/* CSS content property */
.element::before {
content: "\006A1F"; /* 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%9F
MD5:
8aad4d1ad27027ff15353c7fcee8706c
SHA1:
48159fda56bb8db81a21daeaf9e344b79e9a6469
Base64:
5qif