C:
char c = '\u3059';
printf("%c\n", c); // Output: す
JavaScript:
const char = '\u3059';
console.log(char); // Output: す
Java:
char c = '\u3059';
System.out.println(c); // Output: す
JSON:
{"text": "\u3059"} // Value: す
Python:
char = '\u3059'
print(char) # Output: す
Perl:
my $char = "\x{3059}";
print $char; # Output: す
PHP:
$char = "\x{3059}";
echo $char; // Output: す
Ruby:
char = "\u{3059}"
puts char # Output: す
Rust:
let c = '\u{3059}';
println!("{}", c); // Output: す
Go:
char := '\u3059'
fmt.Printf("%c\n", char) // Output: す
CSS:
/* CSS content property */
.element::before {
content: "\003059"; /* 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%99
MD5:
052cd511c8cd42254944a6ace1813f84
SHA1:
5b8252a1e93fdd91272350dbc433541ab077e500
Base64:
44GZ