C:
char c = '\u3090';
printf("%c\n", c); // Output: ゐ
JavaScript:
const char = '\u3090';
console.log(char); // Output: ゐ
Java:
char c = '\u3090';
System.out.println(c); // Output: ゐ
JSON:
{"text": "\u3090"} // Value: ゐ
Python:
char = '\u3090'
print(char) # Output: ゐ
Perl:
my $char = "\x{3090}";
print $char; # Output: ゐ
PHP:
$char = "\x{3090}";
echo $char; // Output: ゐ
Ruby:
char = "\u{3090}"
puts char # Output: ゐ
Rust:
let c = '\u{3090}';
println!("{}", c); // Output: ゐ
Go:
char := '\u3090'
fmt.Printf("%c\n", char) // Output: ゐ
CSS:
/* CSS content property */
.element::before {
content: "\003090"; /* 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%90
MD5:
14c889da798cc2237456127e7cd91f34
SHA1:
6ad834268251cc9afd0d4e4b3dd9fedac0b0c65f
Base64:
44KQ