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