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