C:
char c = '\u7887';
printf("%c\n", c); // Output: 碇
JavaScript:
const char = '\u7887';
console.log(char); // Output: 碇
Java:
char c = '\u7887';
System.out.println(c); // Output: 碇
JSON:
{"text": "\u7887"} // Value: 碇
Python:
char = '\u7887'
print(char) # Output: 碇
Perl:
my $char = "\x{7887}";
print $char; # Output: 碇
PHP:
$char = "\x{7887}";
echo $char; // Output: 碇
Ruby:
char = "\u{7887}"
puts char # Output: 碇
Rust:
let c = '\u{7887}';
println!("{}", c); // Output: 碇
Go:
char := '\u7887'
fmt.Printf("%c\n", char) // Output: 碇
CSS:
/* CSS content property */
.element::before {
content: "\007887"; /* 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%87
MD5:
93a64c9e6c75824e171fb9dc5dac6a4f
SHA1:
c09c43fd8f502f374ae26c7806f70a84bda09b40
Base64:
56KH