C:
char c = '\u309D';
printf("%c\n", c); // Output: ゝ
JavaScript:
const char = '\u309D';
console.log(char); // Output: ゝ
Java:
char c = '\u309D';
System.out.println(c); // Output: ゝ
JSON:
{"text": "\u309D"} // Value: ゝ
Python:
char = '\u309D'
print(char) # Output: ゝ
Perl:
my $char = "\x{309D}";
print $char; # Output: ゝ
PHP:
$char = "\x{309D}";
echo $char; // Output: ゝ
Ruby:
char = "\u{309D}"
puts char # Output: ゝ
Rust:
let c = '\u{309D}';
println!("{}", c); // Output: ゝ
Go:
char := '\u309D'
fmt.Printf("%c\n", char) // Output: ゝ
CSS:
/* CSS content property */
.element::before {
content: "\00309D"; /* 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%9D
MD5:
136a62bd801e96f390e06e5ab562c814
SHA1:
7a77a688c7b9c856c0562ff8590493ab6eba7f52
Base64:
44Kd