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