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