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