C:
char c = '\u4EC3';
printf("%c\n", c); // Output: 仃
JavaScript:
const char = '\u4EC3';
console.log(char); // Output: 仃
Java:
char c = '\u4EC3';
System.out.println(c); // Output: 仃
JSON:
{"text": "\u4EC3"} // Value: 仃
Python:
char = '\u4EC3'
print(char) # Output: 仃
Perl:
my $char = "\x{4EC3}";
print $char; # Output: 仃
PHP:
$char = "\x{4EC3}";
echo $char; // Output: 仃
Ruby:
char = "\u{4EC3}"
puts char # Output: 仃
Rust:
let c = '\u{4EC3}';
println!("{}", c); // Output: 仃
Go:
char := '\u4EC3'
fmt.Printf("%c\n", char) // Output: 仃
CSS:
/* CSS content property */
.element::before {
content: "\004EC3"; /* 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%BB%83
MD5:
4bed7cc87155eab62bff997dfea1ed72
SHA1:
d3e48fcaa262a545bad0af9306c6f7415e67b457
Base64:
5LuD