C:
char c = '\u30D7';
printf("%c\n", c); // Output: プ
JavaScript:
const char = '\u30D7';
console.log(char); // Output: プ
Java:
char c = '\u30D7';
System.out.println(c); // Output: プ
JSON:
{"text": "\u30D7"} // Value: プ
Python:
char = '\u30D7'
print(char) # Output: プ
Perl:
my $char = "\x{30D7}";
print $char; # Output: プ
PHP:
$char = "\x{30D7}";
echo $char; // Output: プ
Ruby:
char = "\u{30D7}"
puts char # Output: プ
Rust:
let c = '\u{30D7}';
println!("{}", c); // Output: プ
Go:
char := '\u30D7'
fmt.Printf("%c\n", char) // Output: プ
CSS:
/* CSS content property */
.element::before {
content: "\0030D7"; /* 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%83%97
MD5:
b1afbb422e553f43e508988c9f4bcdf3
SHA1:
a3b8f9e1263bc3cf27ab53197bbec353bf97ad74
Base64:
44OX