C:
char c = '\u3086';
printf("%c\n", c); // Output: ゆ
JavaScript:
const char = '\u3086';
console.log(char); // Output: ゆ
Java:
char c = '\u3086';
System.out.println(c); // Output: ゆ
JSON:
{"text": "\u3086"} // Value: ゆ
Python:
char = '\u3086'
print(char) # Output: ゆ
Perl:
my $char = "\x{3086}";
print $char; # Output: ゆ
PHP:
$char = "\x{3086}";
echo $char; // Output: ゆ
Ruby:
char = "\u{3086}"
puts char # Output: ゆ
Rust:
let c = '\u{3086}';
println!("{}", c); // Output: ゆ
Go:
char := '\u3086'
fmt.Printf("%c\n", char) // Output: ゆ
CSS:
/* CSS content property */
.element::before {
content: "\003086"; /* 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%86
MD5:
31c8f22ffa3370b57dc6aaf1605cd64d
SHA1:
44567171f3358dee1f777b78e1dce6133f653a5c
Base64:
44KG