C:
char c = '\u3070';
printf("%c\n", c); // Output: ば
JavaScript:
const char = '\u3070';
console.log(char); // Output: ば
Java:
char c = '\u3070';
System.out.println(c); // Output: ば
JSON:
{"text": "\u3070"} // Value: ば
Python:
char = '\u3070'
print(char) # Output: ば
Perl:
my $char = "\x{3070}";
print $char; # Output: ば
PHP:
$char = "\x{3070}";
echo $char; // Output: ば
Ruby:
char = "\u{3070}"
puts char # Output: ば
Rust:
let c = '\u{3070}';
println!("{}", c); // Output: ば
Go:
char := '\u3070'
fmt.Printf("%c\n", char) // Output: ば
CSS:
/* CSS content property */
.element::before {
content: "\003070"; /* 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%B0
MD5:
d607db23d70ceb3d3648799bbe1e473e
SHA1:
d8c158e0a2d1382377f705ff2a196421a7e9ddc8
Base64:
44Gw