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