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