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