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