C:
char c = '\u4F58';
printf("%c\n", c); // Output: 佘
JavaScript:
const char = '\u4F58';
console.log(char); // Output: 佘
Java:
char c = '\u4F58';
System.out.println(c); // Output: 佘
JSON:
{"text": "\u4F58"} // Value: 佘
Python:
char = '\u4F58'
print(char) # Output: 佘
Perl:
my $char = "\x{4F58}";
print $char; # Output: 佘
PHP:
$char = "\x{4F58}";
echo $char; // Output: 佘
Ruby:
char = "\u{4F58}"
puts char # Output: 佘
Rust:
let c = '\u{4F58}';
println!("{}", c); // Output: 佘
Go:
char := '\u4F58'
fmt.Printf("%c\n", char) // Output: 佘
CSS:
/* CSS content property */
.element::before {
content: "\004F58"; /* 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%BD%98
MD5:
39380584e522be93ae9542b8c381ee88
SHA1:
96f19ee5946422460a9f091f6766b915031c29bf
Base64:
5L2Y