C:
char c = '\u3063';
printf("%c\n", c); // Output: っ
JavaScript:
const char = '\u3063';
console.log(char); // Output: っ
Java:
char c = '\u3063';
System.out.println(c); // Output: っ
JSON:
{"text": "\u3063"} // Value: っ
Python:
char = '\u3063'
print(char) # Output: っ
Perl:
my $char = "\x{3063}";
print $char; # Output: っ
PHP:
$char = "\x{3063}";
echo $char; // Output: っ
Ruby:
char = "\u{3063}"
puts char # Output: っ
Rust:
let c = '\u{3063}';
println!("{}", c); // Output: っ
Go:
char := '\u3063'
fmt.Printf("%c\n", char) // Output: っ
CSS:
/* CSS content property */
.element::before {
content: "\003063"; /* 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%A3
MD5:
001aefda5467b1ce976fe9f9f071fac9
SHA1:
a9d76081a0ac71291c6ae124770a4cc72a09e3cc
Base64:
44Gj