C:
char c = '\u5B4D';
printf("%c\n", c); // Output: 孍
JavaScript:
const char = '\u5B4D';
console.log(char); // Output: 孍
Java:
char c = '\u5B4D';
System.out.println(c); // Output: 孍
JSON:
{"text": "\u5B4D"} // Value: 孍
Python:
char = '\u5B4D'
print(char) # Output: 孍
Perl:
my $char = "\x{5B4D}";
print $char; # Output: 孍
PHP:
$char = "\x{5B4D}";
echo $char; // Output: 孍
Ruby:
char = "\u{5B4D}"
puts char # Output: 孍
Rust:
let c = '\u{5B4D}';
println!("{}", c); // Output: 孍
Go:
char := '\u5B4D'
fmt.Printf("%c\n", char) // Output: 孍
CSS:
/* CSS content property */
.element::before {
content: "\005B4D"; /* 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=%E5%AD%8D
MD5:
76f3c454d10a317ee84ff917aabe430c
SHA1:
0c58a8ed07face710cd6d8639d5b22efd1a90aef
Base64:
5a2N