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