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