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