C:
char c = '\u5B48';
printf("%c\n", c); // Output: 孈
JavaScript:
const char = '\u5B48';
console.log(char); // Output: 孈
Java:
char c = '\u5B48';
System.out.println(c); // Output: 孈
JSON:
{"text": "\u5B48"} // Value: 孈
Python:
char = '\u5B48'
print(char) # Output: 孈
Perl:
my $char = "\x{5B48}";
print $char; # Output: 孈
PHP:
$char = "\x{5B48}";
echo $char; // Output: 孈
Ruby:
char = "\u{5B48}"
puts char # Output: 孈
Rust:
let c = '\u{5B48}';
println!("{}", c); // Output: 孈
Go:
char := '\u5B48'
fmt.Printf("%c\n", char) // Output: 孈
CSS:
/* CSS content property */
.element::before {
content: "\005B48"; /* 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%88
MD5:
69208d0df8a5cac158753ad7da5ca662
SHA1:
8c4f3ec175a12351ed2fe22a071a5daa7461ca9c
Base64:
5a2I