C:
char c = '\u9171';
printf("%c\n", c); // Output: 酱
JavaScript:
const char = '\u9171';
console.log(char); // Output: 酱
Java:
char c = '\u9171';
System.out.println(c); // Output: 酱
JSON:
{"text": "\u9171"} // Value: 酱
Python:
char = '\u9171'
print(char) # Output: 酱
Perl:
my $char = "\x{9171}";
print $char; # Output: 酱
PHP:
$char = "\x{9171}";
echo $char; // Output: 酱
Ruby:
char = "\u{9171}"
puts char # Output: 酱
Rust:
let c = '\u{9171}';
println!("{}", c); // Output: 酱
Go:
char := '\u9171'
fmt.Printf("%c\n", char) // Output: 酱
CSS:
/* CSS content property */
.element::before {
content: "\009171"; /* 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%B1
MD5:
a02b36075c8c34661937f0d31c774479
SHA1:
4f281adaf9b170cc10bdbcb38a247c49b487c002
Base64:
6YWx