C:
char c = '\u5BAB';
printf("%c\n", c); // Output: 宫
JavaScript:
const char = '\u5BAB';
console.log(char); // Output: 宫
Java:
char c = '\u5BAB';
System.out.println(c); // Output: 宫
JSON:
{"text": "\u5BAB"} // Value: 宫
Python:
char = '\u5BAB'
print(char) # Output: 宫
Perl:
my $char = "\x{5BAB}";
print $char; # Output: 宫
PHP:
$char = "\x{5BAB}";
echo $char; // Output: 宫
Ruby:
char = "\u{5BAB}"
puts char # Output: 宫
Rust:
let c = '\u{5BAB}';
println!("{}", c); // Output: 宫
Go:
char := '\u5BAB'
fmt.Printf("%c\n", char) // Output: 宫
CSS:
/* CSS content property */
.element::before {
content: "\005BAB"; /* 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%AB
MD5:
60f80495bc9870a56fc09961751d771d
SHA1:
0407383e00c8fa0bd6fb214959a2ea73845df122
Base64:
5a6r