C:
char c = '\u5BBC';
printf("%c\n", c); // Output: 宼
JavaScript:
const char = '\u5BBC';
console.log(char); // Output: 宼
Java:
char c = '\u5BBC';
System.out.println(c); // Output: 宼
JSON:
{"text": "\u5BBC"} // Value: 宼
Python:
char = '\u5BBC'
print(char) # Output: 宼
Perl:
my $char = "\x{5BBC}";
print $char; # Output: 宼
PHP:
$char = "\x{5BBC}";
echo $char; // Output: 宼
Ruby:
char = "\u{5BBC}"
puts char # Output: 宼
Rust:
let c = '\u{5BBC}';
println!("{}", c); // Output: 宼
Go:
char := '\u5BBC'
fmt.Printf("%c\n", char) // Output: 宼
CSS:
/* CSS content property */
.element::before {
content: "\005BBC"; /* 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=%E5%AE%BC
MD5:
0e6819dfc739608399dea76742d464a0
SHA1:
d59d9ec344cd5ea69c71e5333622435a40e0746f
Base64:
5a68