C:
char c = '\u9BA8';
printf("%c\n", c); // Output: 鮨
JavaScript:
const char = '\u9BA8';
console.log(char); // Output: 鮨
Java:
char c = '\u9BA8';
System.out.println(c); // Output: 鮨
JSON:
{"text": "\u9BA8"} // Value: 鮨
Python:
char = '\u9BA8'
print(char) # Output: 鮨
Perl:
my $char = "\x{9BA8}";
print $char; # Output: 鮨
PHP:
$char = "\x{9BA8}";
echo $char; // Output: 鮨
Ruby:
char = "\u{9BA8}"
puts char # Output: 鮨
Rust:
let c = '\u{9BA8}';
println!("{}", c); // Output: 鮨
Go:
char := '\u9BA8'
fmt.Printf("%c\n", char) // Output: 鮨
CSS:
/* CSS content property */
.element::before {
content: "\009BA8"; /* 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%AE%A8
MD5:
0de60bdbd3a9f1d29ee6425316a8e4ee
SHA1:
6453e0d817cb3ab06821f29561fc3eb951571f5d
Base64:
6a6o