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