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