C:
char c = '\u308A';
printf("%c\n", c); // Output: り
JavaScript:
const char = '\u308A';
console.log(char); // Output: り
Java:
char c = '\u308A';
System.out.println(c); // Output: り
JSON:
{"text": "\u308A"} // Value: り
Python:
char = '\u308A'
print(char) # Output: り
Perl:
my $char = "\x{308A}";
print $char; # Output: り
PHP:
$char = "\x{308A}";
echo $char; // Output: り
Ruby:
char = "\u{308A}"
puts char # Output: り
Rust:
let c = '\u{308A}';
println!("{}", c); // Output: り
Go:
char := '\u308A'
fmt.Printf("%c\n", char) // Output: り
CSS:
/* CSS content property */
.element::before {
content: "\00308A"; /* 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%8A
MD5:
0e8f23d1bc9e17bbc3cf6c85f4730717
SHA1:
71d1c63e507f4593761c31db6ad45880d1a3ae44
Base64:
44KK