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