C:
char c = '\u5BF6';
printf("%c\n", c); // Output: 寶
JavaScript:
const char = '\u5BF6';
console.log(char); // Output: 寶
Java:
char c = '\u5BF6';
System.out.println(c); // Output: 寶
JSON:
{"text": "\u5BF6"} // Value: 寶
Python:
char = '\u5BF6'
print(char) # Output: 寶
Perl:
my $char = "\x{5BF6}";
print $char; # Output: 寶
PHP:
$char = "\x{5BF6}";
echo $char; // Output: 寶
Ruby:
char = "\u{5BF6}"
puts char # Output: 寶
Rust:
let c = '\u{5BF6}';
println!("{}", c); // Output: 寶
Go:
char := '\u5BF6'
fmt.Printf("%c\n", char) // Output: 寶
CSS:
/* CSS content property */
.element::before {
content: "\005BF6"; /* 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%AF%B6
MD5:
3e16bbb7da3e009eb91eb1d2c4e8dac3
SHA1:
c31ca5e175b2ff39e586804d88096c3ec3843de0
Base64:
5a+2