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