C:
char c = '\u7DA0';
printf("%c\n", c); // Output: 綠
JavaScript:
const char = '\u7DA0';
console.log(char); // Output: 綠
Java:
char c = '\u7DA0';
System.out.println(c); // Output: 綠
JSON:
{"text": "\u7DA0"} // Value: 綠
Python:
char = '\u7DA0'
print(char) # Output: 綠
Perl:
my $char = "\x{7DA0}";
print $char; # Output: 綠
PHP:
$char = "\x{7DA0}";
echo $char; // Output: 綠
Ruby:
char = "\u{7DA0}"
puts char # Output: 綠
Rust:
let c = '\u{7DA0}';
println!("{}", c); // Output: 綠
Go:
char := '\u7DA0'
fmt.Printf("%c\n", char) // Output: 綠
CSS:
/* CSS content property */
.element::before {
content: "\007DA0"; /* 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%B6%A0
MD5:
31629e6057331407f13caea416ca2ab5
SHA1:
d0ca87cdb62b0ef5eb6dfa573c7f6d80c5923e90
Base64:
57ag