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