C:
char c = '\u4F0A';
printf("%c\n", c); // Output: 伊
JavaScript:
const char = '\u4F0A';
console.log(char); // Output: 伊
Java:
char c = '\u4F0A';
System.out.println(c); // Output: 伊
JSON:
{"text": "\u4F0A"} // Value: 伊
Python:
char = '\u4F0A'
print(char) # Output: 伊
Perl:
my $char = "\x{4F0A}";
print $char; # Output: 伊
PHP:
$char = "\x{4F0A}";
echo $char; // Output: 伊
Ruby:
char = "\u{4F0A}"
puts char # Output: 伊
Rust:
let c = '\u{4F0A}';
println!("{}", c); // Output: 伊
Go:
char := '\u4F0A'
fmt.Printf("%c\n", char) // Output: 伊
CSS:
/* CSS content property */
.element::before {
content: "\004F0A"; /* 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%BC%8A
MD5:
99c5f660f7069f4ab87eeaefb2c2d896
SHA1:
9169f4cccecb7c62ea5bf49a66929c8f6e0039d8
Base64:
5LyK