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