C:
char c = '\u8205';
printf("%c\n", c); // Output: 舅
JavaScript:
const char = '\u8205';
console.log(char); // Output: 舅
Java:
char c = '\u8205';
System.out.println(c); // Output: 舅
JSON:
{"text": "\u8205"} // Value: 舅
Python:
char = '\u8205'
print(char) # Output: 舅
Perl:
my $char = "\x{8205}";
print $char; # Output: 舅
PHP:
$char = "\x{8205}";
echo $char; // Output: 舅
Ruby:
char = "\u{8205}"
puts char # Output: 舅
Rust:
let c = '\u{8205}';
println!("{}", c); // Output: 舅
Go:
char := '\u8205'
fmt.Printf("%c\n", char) // Output: 舅
CSS:
/* CSS content property */
.element::before {
content: "\008205"; /* 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%85
MD5:
1dec87bf4099563ff2f268d057eedd93
SHA1:
469f5900a454a7942d0a388abd9c526c7f2b02b3
Base64:
6IiF