C:
char c = '\u4E8C';
printf("%c\n", c); // Output: 二
JavaScript:
const char = '\u4E8C';
console.log(char); // Output: 二
Java:
char c = '\u4E8C';
System.out.println(c); // Output: 二
JSON:
{"text": "\u4E8C"} // Value: 二
Python:
char = '\u4E8C'
print(char) # Output: 二
Perl:
my $char = "\x{4E8C}";
print $char; # Output: 二
PHP:
$char = "\x{4E8C}";
echo $char; // Output: 二
Ruby:
char = "\u{4E8C}"
puts char # Output: 二
Rust:
let c = '\u{4E8C}';
println!("{}", c); // Output: 二
Go:
char := '\u4E8C'
fmt.Printf("%c\n", char) // Output: 二
CSS:
/* CSS content property */
.element::before {
content: "\004E8C"; /* 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=%E4%BA%8C
MD5:
2d8be272c9e78713e31e5c0c165422bb
SHA1:
1d5639f716b643b7204f04b0c3ef9ab222ee75ba
Base64:
5LqM