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