C:
char c = '\u7989';
printf("%c\n", c); // Output: 禉
JavaScript:
const char = '\u7989';
console.log(char); // Output: 禉
Java:
char c = '\u7989';
System.out.println(c); // Output: 禉
JSON:
{"text": "\u7989"} // Value: 禉
Python:
char = '\u7989'
print(char) # Output: 禉
Perl:
my $char = "\x{7989}";
print $char; # Output: 禉
PHP:
$char = "\x{7989}";
echo $char; // Output: 禉
Ruby:
char = "\u{7989}"
puts char # Output: 禉
Rust:
let c = '\u{7989}';
println!("{}", c); // Output: 禉
Go:
char := '\u7989'
fmt.Printf("%c\n", char) // Output: 禉
CSS:
/* CSS content property */
.element::before {
content: "\007989"; /* 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%89
MD5:
f0bdd2d9bc5de246189b8f5e04088328
SHA1:
bcbd47d688c19c0d049d8216c388ff4ea18cf019
Base64:
56aJ