C:
char c = '\u3045';
printf("%c\n", c); // Output: ぅ
JavaScript:
const char = '\u3045';
console.log(char); // Output: ぅ
Java:
char c = '\u3045';
System.out.println(c); // Output: ぅ
JSON:
{"text": "\u3045"} // Value: ぅ
Python:
char = '\u3045'
print(char) # Output: ぅ
Perl:
my $char = "\x{3045}";
print $char; # Output: ぅ
PHP:
$char = "\x{3045}";
echo $char; // Output: ぅ
Ruby:
char = "\u{3045}"
puts char # Output: ぅ
Rust:
let c = '\u{3045}';
println!("{}", c); // Output: ぅ
Go:
char := '\u3045'
fmt.Printf("%c\n", char) // Output: ぅ
CSS:
/* CSS content property */
.element::before {
content: "\003045"; /* 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%85
MD5:
8738212fd512ab9af6feaa84edd278b5
SHA1:
262a8444f2c0b391479dabb26e808b68ba8e3a28
Base64:
44GF