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