C:
char c = '\u7558';
printf("%c\n", c); // Output: 畘
JavaScript:
const char = '\u7558';
console.log(char); // Output: 畘
Java:
char c = '\u7558';
System.out.println(c); // Output: 畘
JSON:
{"text": "\u7558"} // Value: 畘
Python:
char = '\u7558'
print(char) # Output: 畘
Perl:
my $char = "\x{7558}";
print $char; # Output: 畘
PHP:
$char = "\x{7558}";
echo $char; // Output: 畘
Ruby:
char = "\u{7558}"
puts char # Output: 畘
Rust:
let c = '\u{7558}';
println!("{}", c); // Output: 畘
Go:
char := '\u7558'
fmt.Printf("%c\n", char) // Output: 畘
CSS:
/* CSS content property */
.element::before {
content: "\007558"; /* 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=%E7%95%98
MD5:
9600aa431d58748308e2ce1bcf31e69c
SHA1:
4ad3db7db7db2a724ff7619629e81d70c9dda2a8
Base64:
55WY