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