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