C:
char c = '\u304A';
printf("%c\n", c); // Output: お
JavaScript:
const char = '\u304A';
console.log(char); // Output: お
Java:
char c = '\u304A';
System.out.println(c); // Output: お
JSON:
{"text": "\u304A"} // Value: お
Python:
char = '\u304A'
print(char) # Output: お
Perl:
my $char = "\x{304A}";
print $char; # Output: お
PHP:
$char = "\x{304A}";
echo $char; // Output: お
Ruby:
char = "\u{304A}"
puts char # Output: お
Rust:
let c = '\u{304A}';
println!("{}", c); // Output: お
Go:
char := '\u304A'
fmt.Printf("%c\n", char) // Output: お
CSS:
/* CSS content property */
.element::before {
content: "\00304A"; /* 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%8A
MD5:
1cfa7b2136e348d87bab68f254a1f01c
SHA1:
ac6bc7de7112c02d6a8dbe789837ee08bffa34ad
Base64:
44GK