C:
char c = '\u8254';
printf("%c\n", c); // Output: 艔
JavaScript:
const char = '\u8254';
console.log(char); // Output: 艔
Java:
char c = '\u8254';
System.out.println(c); // Output: 艔
JSON:
{"text": "\u8254"} // Value: 艔
Python:
char = '\u8254'
print(char) # Output: 艔
Perl:
my $char = "\x{8254}";
print $char; # Output: 艔
PHP:
$char = "\x{8254}";
echo $char; // Output: 艔
Ruby:
char = "\u{8254}"
puts char # Output: 艔
Rust:
let c = '\u{8254}';
println!("{}", c); // Output: 艔
Go:
char := '\u8254'
fmt.Printf("%c\n", char) // Output: 艔
CSS:
/* CSS content property */
.element::before {
content: "\008254"; /* 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%94
MD5:
fea2d2248203f3b8a6fc2146b42cd7ee
SHA1:
d5078b0bcdf7d3bf5a778388b1685f1397d3c335
Base64:
6ImU