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