C:
char c = '\u5B41';
printf("%c\n", c); // Output: 孁
JavaScript:
const char = '\u5B41';
console.log(char); // Output: 孁
Java:
char c = '\u5B41';
System.out.println(c); // Output: 孁
JSON:
{"text": "\u5B41"} // Value: 孁
Python:
char = '\u5B41'
print(char) # Output: 孁
Perl:
my $char = "\x{5B41}";
print $char; # Output: 孁
PHP:
$char = "\x{5B41}";
echo $char; // Output: 孁
Ruby:
char = "\u{5B41}"
puts char # Output: 孁
Rust:
let c = '\u{5B41}';
println!("{}", c); // Output: 孁
Go:
char := '\u5B41'
fmt.Printf("%c\n", char) // Output: 孁
CSS:
/* CSS content property */
.element::before {
content: "\005B41"; /* 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%81
MD5:
46ace66ca10382141b106c77694385f1
SHA1:
9c449db9de1b185bd11ff33bc6d910ac7596480b
Base64:
5a2B