C:
char c = '\u8204';
printf("%c\n", c); // Output: 舄
JavaScript:
const char = '\u8204';
console.log(char); // Output: 舄
Java:
char c = '\u8204';
System.out.println(c); // Output: 舄
JSON:
{"text": "\u8204"} // Value: 舄
Python:
char = '\u8204'
print(char) # Output: 舄
Perl:
my $char = "\x{8204}";
print $char; # Output: 舄
PHP:
$char = "\x{8204}";
echo $char; // Output: 舄
Ruby:
char = "\u{8204}"
puts char # Output: 舄
Rust:
let c = '\u{8204}';
println!("{}", c); // Output: 舄
Go:
char := '\u8204'
fmt.Printf("%c\n", char) // Output: 舄
CSS:
/* CSS content property */
.element::before {
content: "\008204"; /* 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%84
MD5:
570dcccd4f69575eed554446069a30f9
SHA1:
51bb22f6dced6773c43c0fbff7211187692c626d
Base64:
6IiE