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