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