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