C:
char c = '\u7990';
printf("%c\n", c); // Output: 禐
JavaScript:
const char = '\u7990';
console.log(char); // Output: 禐
Java:
char c = '\u7990';
System.out.println(c); // Output: 禐
JSON:
{"text": "\u7990"} // Value: 禐
Python:
char = '\u7990'
print(char) # Output: 禐
Perl:
my $char = "\x{7990}";
print $char; # Output: 禐
PHP:
$char = "\x{7990}";
echo $char; // Output: 禐
Ruby:
char = "\u{7990}"
puts char # Output: 禐
Rust:
let c = '\u{7990}';
println!("{}", c); // Output: 禐
Go:
char := '\u7990'
fmt.Printf("%c\n", char) // Output: 禐
CSS:
/* CSS content property */
.element::before {
content: "\007990"; /* 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%A6%90
MD5:
ddfc54c48742b825daac78775b91fd64
SHA1:
64afc8ef1b4968b3149d05004b05ca2febd4b8f1
Base64:
56aQ