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