C:
char c = '\u6798';
printf("%c\n", c); // Output: 枘
JavaScript:
const char = '\u6798';
console.log(char); // Output: 枘
Java:
char c = '\u6798';
System.out.println(c); // Output: 枘
JSON:
{"text": "\u6798"} // Value: 枘
Python:
char = '\u6798'
print(char) # Output: 枘
Perl:
my $char = "\x{6798}";
print $char; # Output: 枘
PHP:
$char = "\x{6798}";
echo $char; // Output: 枘
Ruby:
char = "\u{6798}"
puts char # Output: 枘
Rust:
let c = '\u{6798}';
println!("{}", c); // Output: 枘
Go:
char := '\u6798'
fmt.Printf("%c\n", char) // Output: 枘
CSS:
/* CSS content property */
.element::before {
content: "\006798"; /* 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=%E6%9E%98
MD5:
4f383d9730149b4ac11f478f893d9c2f
SHA1:
064845e47ff315cd8c297488d9ffb9a4e4ba2790
Base64:
5p6Y