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