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