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