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