C:
char c = '\u8215';
printf("%c\n", c); // Output: 舕
JavaScript:
const char = '\u8215';
console.log(char); // Output: 舕
Java:
char c = '\u8215';
System.out.println(c); // Output: 舕
JSON:
{"text": "\u8215"} // Value: 舕
Python:
char = '\u8215'
print(char) # Output: 舕
Perl:
my $char = "\x{8215}";
print $char; # Output: 舕
PHP:
$char = "\x{8215}";
echo $char; // Output: 舕
Ruby:
char = "\u{8215}"
puts char # Output: 舕
Rust:
let c = '\u{8215}';
println!("{}", c); // Output: 舕
Go:
char := '\u8215'
fmt.Printf("%c\n", char) // Output: 舕
CSS:
/* CSS content property */
.element::before {
content: "\008215"; /* 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%95
MD5:
80f2868517d782a7635c4cfd8f0ad9a3
SHA1:
96a3718aaf8e24b257e6a0d098f1d732b07851c4
Base64:
6IiV