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