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