C:
char c = '\u8217';
printf("%c\n", c); // Output: 舗
JavaScript:
const char = '\u8217';
console.log(char); // Output: 舗
Java:
char c = '\u8217';
System.out.println(c); // Output: 舗
JSON:
{"text": "\u8217"} // Value: 舗
Python:
char = '\u8217'
print(char) # Output: 舗
Perl:
my $char = "\x{8217}";
print $char; # Output: 舗
PHP:
$char = "\x{8217}";
echo $char; // Output: 舗
Ruby:
char = "\u{8217}"
puts char # Output: 舗
Rust:
let c = '\u{8217}';
println!("{}", c); // Output: 舗
Go:
char := '\u8217'
fmt.Printf("%c\n", char) // Output: 舗
CSS:
/* CSS content property */
.element::before {
content: "\008217"; /* 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%97
MD5:
b241cff004a6600c49d29e2e36d99ede
SHA1:
55cb9097d4db60c1b3a7c5e8eefe90dfbbf8ac50
Base64:
6IiX