C:
char c = '\u3094';
printf("%c\n", c); // Output: ゔ
JavaScript:
const char = '\u3094';
console.log(char); // Output: ゔ
Java:
char c = '\u3094';
System.out.println(c); // Output: ゔ
JSON:
{"text": "\u3094"} // Value: ゔ
Python:
char = '\u3094'
print(char) # Output: ゔ
Perl:
my $char = "\x{3094}";
print $char; # Output: ゔ
PHP:
$char = "\x{3094}";
echo $char; // Output: ゔ
Ruby:
char = "\u{3094}"
puts char # Output: ゔ
Rust:
let c = '\u{3094}';
println!("{}", c); // Output: ゔ
Go:
char := '\u3094'
fmt.Printf("%c\n", char) // Output: ゔ
CSS:
/* CSS content property */
.element::before {
content: "\003094"; /* 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%94
MD5:
503df592eeb4488d0aae2ec3091afeb3
SHA1:
115ca1f35a6d083afc374ffae6fee24d13cacf6b
Base64:
44KU