C:
char c = '\u30F4';
printf("%c\n", c); // Output: ヴ
JavaScript:
const char = '\u30F4';
console.log(char); // Output: ヴ
Java:
char c = '\u30F4';
System.out.println(c); // Output: ヴ
JSON:
{"text": "\u30F4"} // Value: ヴ
Python:
char = '\u30F4'
print(char) # Output: ヴ
Perl:
my $char = "\x{30F4}";
print $char; # Output: ヴ
PHP:
$char = "\x{30F4}";
echo $char; // Output: ヴ
Ruby:
char = "\u{30F4}"
puts char # Output: ヴ
Rust:
let c = '\u{30F4}';
println!("{}", c); // Output: ヴ
Go:
char := '\u30F4'
fmt.Printf("%c\n", char) // Output: ヴ
CSS:
/* CSS content property */
.element::before {
content: "\0030F4"; /* 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%83%B4
MD5:
a1cb733393f8f55ed0f7986945475bbf
SHA1:
8b43cd81cca185616ca31d1cab922173ad0fd1c3
Base64:
44O0