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