C:
char c = '\u304E';
printf("%c\n", c); // Output: ぎ
JavaScript:
const char = '\u304E';
console.log(char); // Output: ぎ
Java:
char c = '\u304E';
System.out.println(c); // Output: ぎ
JSON:
{"text": "\u304E"} // Value: ぎ
Python:
char = '\u304E'
print(char) # Output: ぎ
Perl:
my $char = "\x{304E}";
print $char; # Output: ぎ
PHP:
$char = "\x{304E}";
echo $char; // Output: ぎ
Ruby:
char = "\u{304E}"
puts char # Output: ぎ
Rust:
let c = '\u{304E}';
println!("{}", c); // Output: ぎ
Go:
char := '\u304E'
fmt.Printf("%c\n", char) // Output: ぎ
CSS:
/* CSS content property */
.element::before {
content: "\00304E"; /* 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%8E
MD5:
603f4f8cc7d81b7a35eb3dac1504c32f
SHA1:
9a77c2df496e764e806b67db37c7178e10c0e506
Base64:
44GO