C:
char c = '\u8223';
printf("%c\n", c); // Output: 舣
JavaScript:
const char = '\u8223';
console.log(char); // Output: 舣
Java:
char c = '\u8223';
System.out.println(c); // Output: 舣
JSON:
{"text": "\u8223"} // Value: 舣
Python:
char = '\u8223'
print(char) # Output: 舣
Perl:
my $char = "\x{8223}";
print $char; # Output: 舣
PHP:
$char = "\x{8223}";
echo $char; // Output: 舣
Ruby:
char = "\u{8223}"
puts char # Output: 舣
Rust:
let c = '\u{8223}';
println!("{}", c); // Output: 舣
Go:
char := '\u8223'
fmt.Printf("%c\n", char) // Output: 舣
CSS:
/* CSS content property */
.element::before {
content: "\008223"; /* 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%A3
MD5:
563ad7e622f2e739dc889998e116c9d6
SHA1:
96e999d73f502df3d879b09701484052f97af279
Base64:
6Iij