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