C:
char c = '\u6923';
printf("%c\n", c); // Output: 椣
JavaScript:
const char = '\u6923';
console.log(char); // Output: 椣
Java:
char c = '\u6923';
System.out.println(c); // Output: 椣
JSON:
{"text": "\u6923"} // Value: 椣
Python:
char = '\u6923'
print(char) # Output: 椣
Perl:
my $char = "\x{6923}";
print $char; # Output: 椣
PHP:
$char = "\x{6923}";
echo $char; // Output: 椣
Ruby:
char = "\u{6923}"
puts char # Output: 椣
Rust:
let c = '\u{6923}';
println!("{}", c); // Output: 椣
Go:
char := '\u6923'
fmt.Printf("%c\n", char) // Output: 椣
CSS:
/* CSS content property */
.element::before {
content: "\006923"; /* 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%A4%A3
MD5:
bc1635ca75364a06ea4fbc8bdde38ecc
SHA1:
d9f25b0153ea8f65ab4b243ca8690756c5a61c55
Base64:
5qSj