C:
char c = '\u75D9';
printf("%c\n", c); // Output: 痙
JavaScript:
const char = '\u75D9';
console.log(char); // Output: 痙
Java:
char c = '\u75D9';
System.out.println(c); // Output: 痙
JSON:
{"text": "\u75D9"} // Value: 痙
Python:
char = '\u75D9'
print(char) # Output: 痙
Perl:
my $char = "\x{75D9}";
print $char; # Output: 痙
PHP:
$char = "\x{75D9}";
echo $char; // Output: 痙
Ruby:
char = "\u{75D9}"
puts char # Output: 痙
Rust:
let c = '\u{75D9}';
println!("{}", c); // Output: 痙
Go:
char := '\u75D9'
fmt.Printf("%c\n", char) // Output: 痙
CSS:
/* CSS content property */
.element::before {
content: "\0075D9"; /* 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%99
MD5:
f9866c37fae0b62624bfe1eab0dec61c
SHA1:
15b47de276cac4fd5cb0b52f43d5d78aaacbe5cf
Base64:
55eZ