C:
char c = '\u915E';
printf("%c\n", c); // Output: 酞
JavaScript:
const char = '\u915E';
console.log(char); // Output: 酞
Java:
char c = '\u915E';
System.out.println(c); // Output: 酞
JSON:
{"text": "\u915E"} // Value: 酞
Python:
char = '\u915E'
print(char) # Output: 酞
Perl:
my $char = "\x{915E}";
print $char; # Output: 酞
PHP:
$char = "\x{915E}";
echo $char; // Output: 酞
Ruby:
char = "\u{915E}"
puts char # Output: 酞
Rust:
let c = '\u{915E}';
println!("{}", c); // Output: 酞
Go:
char := '\u915E'
fmt.Printf("%c\n", char) // Output: 酞
CSS:
/* CSS content property */
.element::before {
content: "\00915E"; /* 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=%E9%85%9E
MD5:
582cfbffed7338f3c3ad54c505f73910
SHA1:
930ea1d7df515c89f3d8e87d2f69f7a00e89d8ec
Base64:
6YWe