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