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