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