C:
char c = '\u7663';
printf("%c\n", c); // Output: 癣
JavaScript:
const char = '\u7663';
console.log(char); // Output: 癣
Java:
char c = '\u7663';
System.out.println(c); // Output: 癣
JSON:
{"text": "\u7663"} // Value: 癣
Python:
char = '\u7663'
print(char) # Output: 癣
Perl:
my $char = "\x{7663}";
print $char; # Output: 癣
PHP:
$char = "\x{7663}";
echo $char; // Output: 癣
Ruby:
char = "\u{7663}"
puts char # Output: 癣
Rust:
let c = '\u{7663}';
println!("{}", c); // Output: 癣
Go:
char := '\u7663'
fmt.Printf("%c\n", char) // Output: 癣
CSS:
/* CSS content property */
.element::before {
content: "\007663"; /* 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%A3
MD5:
408b62a14fa9f8a006524d2aba7d0999
SHA1:
3517d0fcc0680695180c08cef525e0062e362da1
Base64:
55mj