C:
char c = '\u8218';
printf("%c\n", c); // Output: 舘
JavaScript:
const char = '\u8218';
console.log(char); // Output: 舘
Java:
char c = '\u8218';
System.out.println(c); // Output: 舘
JSON:
{"text": "\u8218"} // Value: 舘
Python:
char = '\u8218'
print(char) # Output: 舘
Perl:
my $char = "\x{8218}";
print $char; # Output: 舘
PHP:
$char = "\x{8218}";
echo $char; // Output: 舘
Ruby:
char = "\u{8218}"
puts char # Output: 舘
Rust:
let c = '\u{8218}';
println!("{}", c); // Output: 舘
Go:
char := '\u8218'
fmt.Printf("%c\n", char) // Output: 舘
CSS:
/* CSS content property */
.element::before {
content: "\008218"; /* 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%98
MD5:
dabdba2fd301f32fb00551e2d7eedab4
SHA1:
971b6c83db392d5c9da07ab96aedccc25201d2a3
Base64:
6IiY