C:
char c = '\u3074';
printf("%c\n", c); // Output: ぴ
JavaScript:
const char = '\u3074';
console.log(char); // Output: ぴ
Java:
char c = '\u3074';
System.out.println(c); // Output: ぴ
JSON:
{"text": "\u3074"} // Value: ぴ
Python:
char = '\u3074'
print(char) # Output: ぴ
Perl:
my $char = "\x{3074}";
print $char; # Output: ぴ
PHP:
$char = "\x{3074}";
echo $char; // Output: ぴ
Ruby:
char = "\u{3074}"
puts char # Output: ぴ
Rust:
let c = '\u{3074}';
println!("{}", c); // Output: ぴ
Go:
char := '\u3074'
fmt.Printf("%c\n", char) // Output: ぴ
CSS:
/* CSS content property */
.element::before {
content: "\003074"; /* 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%B4
MD5:
d3d504d0bc632ad1bf3d9d373c5930cd
SHA1:
749766f43a50d91725083d31b2f69227fdc964dd
Base64:
44G0