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