C:
char c = '\u7897';
printf("%c\n", c); // Output: 碗
JavaScript:
const char = '\u7897';
console.log(char); // Output: 碗
Java:
char c = '\u7897';
System.out.println(c); // Output: 碗
JSON:
{"text": "\u7897"} // Value: 碗
Python:
char = '\u7897'
print(char) # Output: 碗
Perl:
my $char = "\x{7897}";
print $char; # Output: 碗
PHP:
$char = "\x{7897}";
echo $char; // Output: 碗
Ruby:
char = "\u{7897}"
puts char # Output: 碗
Rust:
let c = '\u{7897}';
println!("{}", c); // Output: 碗
Go:
char := '\u7897'
fmt.Printf("%c\n", char) // Output: 碗
CSS:
/* CSS content property */
.element::before {
content: "\007897"; /* 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=%E7%A2%97
MD5:
e67f42e9958ad2123c318e1a970e1018
SHA1:
435622d3a4845a5cc7f05775c57ab2ff78891d82
Base64:
56KX