C:
char c = '\u7EC9';
printf("%c\n", c); // Output: 绉
JavaScript:
const char = '\u7EC9';
console.log(char); // Output: 绉
Java:
char c = '\u7EC9';
System.out.println(c); // Output: 绉
JSON:
{"text": "\u7EC9"} // Value: 绉
Python:
char = '\u7EC9'
print(char) # Output: 绉
Perl:
my $char = "\x{7EC9}";
print $char; # Output: 绉
PHP:
$char = "\x{7EC9}";
echo $char; // Output: 绉
Ruby:
char = "\u{7EC9}"
puts char # Output: 绉
Rust:
let c = '\u{7EC9}';
println!("{}", c); // Output: 绉
Go:
char := '\u7EC9'
fmt.Printf("%c\n", char) // Output: 绉
CSS:
/* CSS content property */
.element::before {
content: "\007EC9"; /* 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%BB%89
MD5:
13480f91871926cb5e91cd75267878b3
SHA1:
ced64cfa4555bb7ab9e1209850e938fa0d722691
Base64:
57uJ