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