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