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