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