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