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