C:
char c = '\u75C9';
printf("%c\n", c); // Output: 痉
JavaScript:
const char = '\u75C9';
console.log(char); // Output: 痉
Java:
char c = '\u75C9';
System.out.println(c); // Output: 痉
JSON:
{"text": "\u75C9"} // Value: 痉
Python:
char = '\u75C9'
print(char) # Output: 痉
Perl:
my $char = "\x{75C9}";
print $char; # Output: 痉
PHP:
$char = "\x{75C9}";
echo $char; // Output: 痉
Ruby:
char = "\u{75C9}"
puts char # Output: 痉
Rust:
let c = '\u{75C9}';
println!("{}", c); // Output: 痉
Go:
char := '\u75C9'
fmt.Printf("%c\n", char) // Output: 痉
CSS:
/* CSS content property */
.element::before {
content: "\0075C9"; /* 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=%E7%97%89
MD5:
94d2057e6e3d3331736bdf836212450e
SHA1:
b1836d5ab34672977fd126255c66d0b2431aad8d
Base64:
55eJ