C:
char c = '\u7885';
printf("%c\n", c); // Output: 碅
JavaScript:
const char = '\u7885';
console.log(char); // Output: 碅
Java:
char c = '\u7885';
System.out.println(c); // Output: 碅
JSON:
{"text": "\u7885"} // Value: 碅
Python:
char = '\u7885'
print(char) # Output: 碅
Perl:
my $char = "\x{7885}";
print $char; # Output: 碅
PHP:
$char = "\x{7885}";
echo $char; // Output: 碅
Ruby:
char = "\u{7885}"
puts char # Output: 碅
Rust:
let c = '\u{7885}';
println!("{}", c); // Output: 碅
Go:
char := '\u7885'
fmt.Printf("%c\n", char) // Output: 碅
CSS:
/* CSS content property */
.element::before {
content: "\007885"; /* 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%85
MD5:
205c5ce3aaa8eaa5d2314cc056f20f2b
SHA1:
0767fb949bfe7c89ea6f8ef7d70f436fc0d57c28
Base64:
56KF