C:
char c = '\u7651';
printf("%c\n", c); // Output: 癑
JavaScript:
const char = '\u7651';
console.log(char); // Output: 癑
Java:
char c = '\u7651';
System.out.println(c); // Output: 癑
JSON:
{"text": "\u7651"} // Value: 癑
Python:
char = '\u7651'
print(char) # Output: 癑
Perl:
my $char = "\x{7651}";
print $char; # Output: 癑
PHP:
$char = "\x{7651}";
echo $char; // Output: 癑
Ruby:
char = "\u{7651}"
puts char # Output: 癑
Rust:
let c = '\u{7651}';
println!("{}", c); // Output: 癑
Go:
char := '\u7651'
fmt.Printf("%c\n", char) // Output: 癑
CSS:
/* CSS content property */
.element::before {
content: "\007651"; /* 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%91
MD5:
80bd1ca197f1a12baafe806e51940b52
SHA1:
12b76f1cd3ed9f9d7784c6590e788fbf6ec60bc6
Base64:
55mR