C:
char c = '\u515A';
printf("%c\n", c); // Output: 党
JavaScript:
const char = '\u515A';
console.log(char); // Output: 党
Java:
char c = '\u515A';
System.out.println(c); // Output: 党
JSON:
{"text": "\u515A"} // Value: 党
Python:
char = '\u515A'
print(char) # Output: 党
Perl:
my $char = "\x{515A}";
print $char; # Output: 党
PHP:
$char = "\x{515A}";
echo $char; // Output: 党
Ruby:
char = "\u{515A}"
puts char # Output: 党
Rust:
let c = '\u{515A}';
println!("{}", c); // Output: 党
Go:
char := '\u515A'
fmt.Printf("%c\n", char) // Output: 党
CSS:
/* CSS content property */
.element::before {
content: "\00515A"; /* 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=%E5%85%9A
MD5:
4f6a9649c866aa72350b39d44d20a8e6
SHA1:
7f1a21b1df99ae46ddf0946644f6309ddb08184e
Base64:
5YWa