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