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