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