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