C:
char c = '\u30B6';
printf("%c\n", c); // Output: ザ
JavaScript:
const char = '\u30B6';
console.log(char); // Output: ザ
Java:
char c = '\u30B6';
System.out.println(c); // Output: ザ
JSON:
{"text": "\u30B6"} // Value: ザ
Python:
char = '\u30B6'
print(char) # Output: ザ
Perl:
my $char = "\x{30B6}";
print $char; # Output: ザ
PHP:
$char = "\x{30B6}";
echo $char; // Output: ザ
Ruby:
char = "\u{30B6}"
puts char # Output: ザ
Rust:
let c = '\u{30B6}';
println!("{}", c); // Output: ザ
Go:
char := '\u30B6'
fmt.Printf("%c\n", char) // Output: ザ
CSS:
/* CSS content property */
.element::before {
content: "\0030B6"; /* 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=%E3%82%B6
MD5:
2cbcc24920e0983db1cce7b14539190b
SHA1:
bdf380ec22e51f07ef7b83c9c1406a90646c945e
Base64:
44K2