C:
char c = '\u3047';
printf("%c\n", c); // Output: ぇ
JavaScript:
const char = '\u3047';
console.log(char); // Output: ぇ
Java:
char c = '\u3047';
System.out.println(c); // Output: ぇ
JSON:
{"text": "\u3047"} // Value: ぇ
Python:
char = '\u3047'
print(char) # Output: ぇ
Perl:
my $char = "\x{3047}";
print $char; # Output: ぇ
PHP:
$char = "\x{3047}";
echo $char; // Output: ぇ
Ruby:
char = "\u{3047}"
puts char # Output: ぇ
Rust:
let c = '\u{3047}';
println!("{}", c); // Output: ぇ
Go:
char := '\u3047'
fmt.Printf("%c\n", char) // Output: ぇ
CSS:
/* CSS content property */
.element::before {
content: "\003047"; /* 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%87
MD5:
4b1db1b903e9b7d72c52479ac3c5841b
SHA1:
4cc2c3eb22a5c1f385451a689cb36097cbf39eec
Base64:
44GH