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