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