C:
char c = '\u3048';
printf("%c\n", c); // Output: え
JavaScript:
const char = '\u3048';
console.log(char); // Output: え
Java:
char c = '\u3048';
System.out.println(c); // Output: え
JSON:
{"text": "\u3048"} // Value: え
Python:
char = '\u3048'
print(char) # Output: え
Perl:
my $char = "\x{3048}";
print $char; # Output: え
PHP:
$char = "\x{3048}";
echo $char; // Output: え
Ruby:
char = "\u{3048}"
puts char # Output: え
Rust:
let c = '\u{3048}';
println!("{}", c); // Output: え
Go:
char := '\u3048'
fmt.Printf("%c\n", char) // Output: え
CSS:
/* CSS content property */
.element::before {
content: "\003048"; /* 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%88
MD5:
456505723301b8cedd1e5aaf7f050f5f
SHA1:
a60311a2fc88eec50cb1640326af2265a3daabf9
Base64:
44GI