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