C:
char c = '\u7A42';
printf("%c\n", c); // Output: 穂
JavaScript:
const char = '\u7A42';
console.log(char); // Output: 穂
Java:
char c = '\u7A42';
System.out.println(c); // Output: 穂
JSON:
{"text": "\u7A42"} // Value: 穂
Python:
char = '\u7A42'
print(char) # Output: 穂
Perl:
my $char = "\x{7A42}";
print $char; # Output: 穂
PHP:
$char = "\x{7A42}";
echo $char; // Output: 穂
Ruby:
char = "\u{7A42}"
puts char # Output: 穂
Rust:
let c = '\u{7A42}';
println!("{}", c); // Output: 穂
Go:
char := '\u7A42'
fmt.Printf("%c\n", char) // Output: 穂
CSS:
/* CSS content property */
.element::before {
content: "\007A42"; /* 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=%E7%A9%82
MD5:
3cc9ddc33812df09971f5cc22b8d0b11
SHA1:
6d07b7cf5fd434e7ca29981e4a871d9f97e8e482
Base64:
56mC