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