C:
char c = '\u6894';
printf("%c\n", c); // Output: 梔
JavaScript:
const char = '\u6894';
console.log(char); // Output: 梔
Java:
char c = '\u6894';
System.out.println(c); // Output: 梔
JSON:
{"text": "\u6894"} // Value: 梔
Python:
char = '\u6894'
print(char) # Output: 梔
Perl:
my $char = "\x{6894}";
print $char; # Output: 梔
PHP:
$char = "\x{6894}";
echo $char; // Output: 梔
Ruby:
char = "\u{6894}"
puts char # Output: 梔
Rust:
let c = '\u{6894}';
println!("{}", c); // Output: 梔
Go:
char := '\u6894'
fmt.Printf("%c\n", char) // Output: 梔
CSS:
/* CSS content property */
.element::before {
content: "\006894"; /* 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%A2%94
MD5:
3a0f2ae278a31455f58a3da7aed39872
SHA1:
b93c716181cb71bb200c912c1988c9e6d2b60395
Base64:
5qKU