C:
char c = '\u3072';
printf("%c\n", c); // Output: ひ
JavaScript:
const char = '\u3072';
console.log(char); // Output: ひ
Java:
char c = '\u3072';
System.out.println(c); // Output: ひ
JSON:
{"text": "\u3072"} // Value: ひ
Python:
char = '\u3072'
print(char) # Output: ひ
Perl:
my $char = "\x{3072}";
print $char; # Output: ひ
PHP:
$char = "\x{3072}";
echo $char; // Output: ひ
Ruby:
char = "\u{3072}"
puts char # Output: ひ
Rust:
let c = '\u{3072}';
println!("{}", c); // Output: ひ
Go:
char := '\u3072'
fmt.Printf("%c\n", char) // Output: ひ
CSS:
/* CSS content property */
.element::before {
content: "\003072"; /* 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%B2
MD5:
c89b06a70bca6265ce06e1183606227d
SHA1:
469e92c9cf65b91a40df0bc151fc3278f86bf3ae
Base64:
44Gy