C:
char c = '\u3056';
printf("%c\n", c); // Output: ざ
JavaScript:
const char = '\u3056';
console.log(char); // Output: ざ
Java:
char c = '\u3056';
System.out.println(c); // Output: ざ
JSON:
{"text": "\u3056"} // Value: ざ
Python:
char = '\u3056'
print(char) # Output: ざ
Perl:
my $char = "\x{3056}";
print $char; # Output: ざ
PHP:
$char = "\x{3056}";
echo $char; // Output: ざ
Ruby:
char = "\u{3056}"
puts char # Output: ざ
Rust:
let c = '\u{3056}';
println!("{}", c); // Output: ざ
Go:
char := '\u3056'
fmt.Printf("%c\n", char) // Output: ざ
CSS:
/* CSS content property */
.element::before {
content: "\003056"; /* 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%81%96
MD5:
fa22c714f02dd9fcabcc74cb6b852563
SHA1:
d08b423295117578aab6f77f40eb5dde5b1a7c52
Base64:
44GW