C:
char c = '\u7A6B';
printf("%c\n", c); // Output: 穫
JavaScript:
const char = '\u7A6B';
console.log(char); // Output: 穫
Java:
char c = '\u7A6B';
System.out.println(c); // Output: 穫
JSON:
{"text": "\u7A6B"} // Value: 穫
Python:
char = '\u7A6B'
print(char) # Output: 穫
Perl:
my $char = "\x{7A6B}";
print $char; # Output: 穫
PHP:
$char = "\x{7A6B}";
echo $char; // Output: 穫
Ruby:
char = "\u{7A6B}"
puts char # Output: 穫
Rust:
let c = '\u{7A6B}';
println!("{}", c); // Output: 穫
Go:
char := '\u7A6B'
fmt.Printf("%c\n", char) // Output: 穫
CSS:
/* CSS content property */
.element::before {
content: "\007A6B"; /* 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%AB
MD5:
32ed0d66c02ba4f56551f31819f7edf7
SHA1:
433e793bcf269255393f7c513c61af12f15a972c
Base64:
56mr