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