C:
char c = '\u3096';
printf("%c\n", c); // Output: ゖ
JavaScript:
const char = '\u3096';
console.log(char); // Output: ゖ
Java:
char c = '\u3096';
System.out.println(c); // Output: ゖ
JSON:
{"text": "\u3096"} // Value: ゖ
Python:
char = '\u3096'
print(char) # Output: ゖ
Perl:
my $char = "\x{3096}";
print $char; # Output: ゖ
PHP:
$char = "\x{3096}";
echo $char; // Output: ゖ
Ruby:
char = "\u{3096}"
puts char # Output: ゖ
Rust:
let c = '\u{3096}';
println!("{}", c); // Output: ゖ
Go:
char := '\u3096'
fmt.Printf("%c\n", char) // Output: ゖ
CSS:
/* CSS content property */
.element::before {
content: "\003096"; /* 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%96
MD5:
6f921837573234611bb6dff817c9decb
SHA1:
0a465b04692aed465193661e3956bffc0404d96a
Base64:
44KW