C:
char c = '\u65E5';
printf("%c\n", c); // Output: 日
JavaScript:
const char = '\u65E5';
console.log(char); // Output: 日
Java:
char c = '\u65E5';
System.out.println(c); // Output: 日
JSON:
{"text": "\u65E5"} // Value: 日
Python:
char = '\u65E5'
print(char) # Output: 日
Perl:
my $char = "\x{65E5}";
print $char; # Output: 日
PHP:
$char = "\x{65E5}";
echo $char; // Output: 日
Ruby:
char = "\u{65E5}"
puts char # Output: 日
Rust:
let c = '\u{65E5}';
println!("{}", c); // Output: 日
Go:
char := '\u65E5'
fmt.Printf("%c\n", char) // Output: 日
CSS:
/* CSS content property */
.element::before {
content: "\0065E5"; /* 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=%E6%97%A5
MD5:
3edddd85ac2c5e612fb71dbb89e7d1c5
SHA1:
15917f3b32616f3c61f1bd69a435a449c35fa12d
Base64:
5pel