C:
char c = '\u3071';
printf("%c\n", c); // Output: ぱ
JavaScript:
const char = '\u3071';
console.log(char); // Output: ぱ
Java:
char c = '\u3071';
System.out.println(c); // Output: ぱ
JSON:
{"text": "\u3071"} // Value: ぱ
Python:
char = '\u3071'
print(char) # Output: ぱ
Perl:
my $char = "\x{3071}";
print $char; # Output: ぱ
PHP:
$char = "\x{3071}";
echo $char; // Output: ぱ
Ruby:
char = "\u{3071}"
puts char # Output: ぱ
Rust:
let c = '\u{3071}';
println!("{}", c); // Output: ぱ
Go:
char := '\u3071'
fmt.Printf("%c\n", char) // Output: ぱ
CSS:
/* CSS content property */
.element::before {
content: "\003071"; /* 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%B1
MD5:
82c3cfaa268fd63d12204607951a5576
SHA1:
81223f8ee527c6ee4921fedc4918e7a76161e644
Base64:
44Gx