C:
char c = '\u8216';
printf("%c\n", c); // Output: 舖
JavaScript:
const char = '\u8216';
console.log(char); // Output: 舖
Java:
char c = '\u8216';
System.out.println(c); // Output: 舖
JSON:
{"text": "\u8216"} // Value: 舖
Python:
char = '\u8216'
print(char) # Output: 舖
Perl:
my $char = "\x{8216}";
print $char; # Output: 舖
PHP:
$char = "\x{8216}";
echo $char; // Output: 舖
Ruby:
char = "\u{8216}"
puts char # Output: 舖
Rust:
let c = '\u{8216}';
println!("{}", c); // Output: 舖
Go:
char := '\u8216'
fmt.Printf("%c\n", char) // Output: 舖
CSS:
/* CSS content property */
.element::before {
content: "\008216"; /* 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=%E8%88%96
MD5:
e5dd7ff234c960b1a7ab4d6e09943b44
SHA1:
ee0f3bdabd6ca47962a8e18c6b1f407cbee66553
Base64:
6IiW