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