C:
char c = '\u7E4C';
printf("%c\n", c); // Output: 繌
JavaScript:
const char = '\u7E4C';
console.log(char); // Output: 繌
Java:
char c = '\u7E4C';
System.out.println(c); // Output: 繌
JSON:
{"text": "\u7E4C"} // Value: 繌
Python:
char = '\u7E4C'
print(char) # Output: 繌
Perl:
my $char = "\x{7E4C}";
print $char; # Output: 繌
PHP:
$char = "\x{7E4C}";
echo $char; // Output: 繌
Ruby:
char = "\u{7E4C}"
puts char # Output: 繌
Rust:
let c = '\u{7E4C}';
println!("{}", c); // Output: 繌
Go:
char := '\u7E4C'
fmt.Printf("%c\n", char) // Output: 繌
CSS:
/* CSS content property */
.element::before {
content: "\007E4C"; /* 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%B9%8C
MD5:
5077d86bf722de1377816bc71024448d
SHA1:
29468489d2ef003fb6800dc7647fc639f2349051
Base64:
57mM