C:
char c = '\u3089';
printf("%c\n", c); // Output: ら
JavaScript:
const char = '\u3089';
console.log(char); // Output: ら
Java:
char c = '\u3089';
System.out.println(c); // Output: ら
JSON:
{"text": "\u3089"} // Value: ら
Python:
char = '\u3089'
print(char) # Output: ら
Perl:
my $char = "\x{3089}";
print $char; # Output: ら
PHP:
$char = "\x{3089}";
echo $char; // Output: ら
Ruby:
char = "\u{3089}"
puts char # Output: ら
Rust:
let c = '\u{3089}';
println!("{}", c); // Output: ら
Go:
char := '\u3089'
fmt.Printf("%c\n", char) // Output: ら
CSS:
/* CSS content property */
.element::before {
content: "\003089"; /* 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%89
MD5:
fa887b39a3ee44df101186b5bb01ee7b
SHA1:
ba7526a5c03fda3051c012fdf7d76a95a0201524
Base64:
44KJ