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