C:
char c = '\u7891';
printf("%c\n", c); // Output: 碑
JavaScript:
const char = '\u7891';
console.log(char); // Output: 碑
Java:
char c = '\u7891';
System.out.println(c); // Output: 碑
JSON:
{"text": "\u7891"} // Value: 碑
Python:
char = '\u7891'
print(char) # Output: 碑
Perl:
my $char = "\x{7891}";
print $char; # Output: 碑
PHP:
$char = "\x{7891}";
echo $char; // Output: 碑
Ruby:
char = "\u{7891}"
puts char # Output: 碑
Rust:
let c = '\u{7891}';
println!("{}", c); // Output: 碑
Go:
char := '\u7891'
fmt.Printf("%c\n", char) // Output: 碑
CSS:
/* CSS content property */
.element::before {
content: "\007891"; /* 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%91
MD5:
0aeb00a7c8fee7293e56cc283bd9a722
SHA1:
d29c993e4306aad5eea23662864881921075878d
Base64:
56KR