C:
char c = '\u3055';
printf("%c\n", c); // Output: さ
JavaScript:
const char = '\u3055';
console.log(char); // Output: さ
Java:
char c = '\u3055';
System.out.println(c); // Output: さ
JSON:
{"text": "\u3055"} // Value: さ
Python:
char = '\u3055'
print(char) # Output: さ
Perl:
my $char = "\x{3055}";
print $char; # Output: さ
PHP:
$char = "\x{3055}";
echo $char; // Output: さ
Ruby:
char = "\u{3055}"
puts char # Output: さ
Rust:
let c = '\u{3055}';
println!("{}", c); // Output: さ
Go:
char := '\u3055'
fmt.Printf("%c\n", char) // Output: さ
CSS:
/* CSS content property */
.element::before {
content: "\003055"; /* 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%95
MD5:
880beff92bcec2fcd3c44cd06b6d0367
SHA1:
7a4faed063b661c5f7dd8ec6a55025aacc0a3be6
Base64:
44GV