C:
char c = '\u897F';
printf("%c\n", c); // Output: 西
JavaScript:
const char = '\u897F';
console.log(char); // Output: 西
Java:
char c = '\u897F';
System.out.println(c); // Output: 西
JSON:
{"text": "\u897F"} // Value: 西
Python:
char = '\u897F'
print(char) # Output: 西
Perl:
my $char = "\x{897F}";
print $char; # Output: 西
PHP:
$char = "\x{897F}";
echo $char; // Output: 西
Ruby:
char = "\u{897F}"
puts char # Output: 西
Rust:
let c = '\u{897F}';
println!("{}", c); // Output: 西
Go:
char := '\u897F'
fmt.Printf("%c\n", char) // Output: 西
CSS:
/* CSS content property */
.element::before {
content: "\00897F"; /* 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=%E8%A5%BF
MD5:
d62cb2a2a1597f141a61ae93302fb381
SHA1:
2f64b5a67e10ae90de39c333f681912fadf38643
Base64:
6KW/