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