C:
char c = '\u870A';
printf("%c\n", c); // Output: 蜊
JavaScript:
const char = '\u870A';
console.log(char); // Output: 蜊
Java:
char c = '\u870A';
System.out.println(c); // Output: 蜊
JSON:
{"text": "\u870A"} // Value: 蜊
Python:
char = '\u870A'
print(char) # Output: 蜊
Perl:
my $char = "\x{870A}";
print $char; # Output: 蜊
PHP:
$char = "\x{870A}";
echo $char; // Output: 蜊
Ruby:
char = "\u{870A}"
puts char # Output: 蜊
Rust:
let c = '\u{870A}';
println!("{}", c); // Output: 蜊
Go:
char := '\u870A'
fmt.Printf("%c\n", char) // Output: 蜊
CSS:
/* CSS content property */
.element::before {
content: "\00870A"; /* 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=%E8%9C%8A
MD5:
8765b2b528e11473b58b89798d3d3b94
SHA1:
9f3d0c3aa2fad3ce4a5af83ab43d52b461e124c0
Base64:
6JyK