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