C:
char c = '\u3042';
printf("%c\n", c); // Output: あ
JavaScript:
const char = '\u3042';
console.log(char); // Output: あ
Java:
char c = '\u3042';
System.out.println(c); // Output: あ
JSON:
{"text": "\u3042"} // Value: あ
Python:
char = '\u3042'
print(char) # Output: あ
Perl:
my $char = "\x{3042}";
print $char; # Output: あ
PHP:
$char = "\x{3042}";
echo $char; // Output: あ
Ruby:
char = "\u{3042}"
puts char # Output: あ
Rust:
let c = '\u{3042}';
println!("{}", c); // Output: あ
Go:
char := '\u3042'
fmt.Printf("%c\n", char) // Output: あ
CSS:
/* CSS content property */
.element::before {
content: "\003042"; /* 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%82
MD5:
8c0c3027e3cfc3d644caab3847a505b0
SHA1:
98fdfc0a7426bbb0fca0b106fd1a6c907446d7c0
Base64:
44GC