C:
char c = '\u8257';
printf("%c\n", c); // Output: 艗
JavaScript:
const char = '\u8257';
console.log(char); // Output: 艗
Java:
char c = '\u8257';
System.out.println(c); // Output: 艗
JSON:
{"text": "\u8257"} // Value: 艗
Python:
char = '\u8257'
print(char) # Output: 艗
Perl:
my $char = "\x{8257}";
print $char; # Output: 艗
PHP:
$char = "\x{8257}";
echo $char; // Output: 艗
Ruby:
char = "\u{8257}"
puts char # Output: 艗
Rust:
let c = '\u{8257}';
println!("{}", c); // Output: 艗
Go:
char := '\u8257'
fmt.Printf("%c\n", char) // Output: 艗
CSS:
/* CSS content property */
.element::before {
content: "\008257"; /* 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%89%97
MD5:
a3dd6ca74e8c69dfe835a6c89dcd5d95
SHA1:
14b637209f261d179aa589b046404eed85bafa9b
Base64:
6ImX