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