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