C:
char c = '\u75DF';
printf("%c\n", c); // Output: 痟
JavaScript:
const char = '\u75DF';
console.log(char); // Output: 痟
Java:
char c = '\u75DF';
System.out.println(c); // Output: 痟
JSON:
{"text": "\u75DF"} // Value: 痟
Python:
char = '\u75DF'
print(char) # Output: 痟
Perl:
my $char = "\x{75DF}";
print $char; # Output: 痟
PHP:
$char = "\x{75DF}";
echo $char; // Output: 痟
Ruby:
char = "\u{75DF}"
puts char # Output: 痟
Rust:
let c = '\u{75DF}';
println!("{}", c); // Output: 痟
Go:
char := '\u75DF'
fmt.Printf("%c\n", char) // Output: 痟
CSS:
/* CSS content property */
.element::before {
content: "\0075DF"; /* 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%9F
MD5:
84826704e09837854c859cd8be4d8cd5
SHA1:
05b1235e27fa15d16f3ecff2db99cdc539c4fa03
Base64:
55ef