C:
char c = '\u7884';
printf("%c\n", c); // Output: 碄
JavaScript:
const char = '\u7884';
console.log(char); // Output: 碄
Java:
char c = '\u7884';
System.out.println(c); // Output: 碄
JSON:
{"text": "\u7884"} // Value: 碄
Python:
char = '\u7884'
print(char) # Output: 碄
Perl:
my $char = "\x{7884}";
print $char; # Output: 碄
PHP:
$char = "\x{7884}";
echo $char; // Output: 碄
Ruby:
char = "\u{7884}"
puts char # Output: 碄
Rust:
let c = '\u{7884}';
println!("{}", c); // Output: 碄
Go:
char := '\u7884'
fmt.Printf("%c\n", char) // Output: 碄
CSS:
/* CSS content property */
.element::before {
content: "\007884"; /* 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%84
MD5:
d88771fc721bde40d347257e9bdcdbe9
SHA1:
2f04513129ed57e4101907f1322dc972e4c34010
Base64:
56KE