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