C:
char c = '\u8253';
printf("%c\n", c); // Output: 艓
JavaScript:
const char = '\u8253';
console.log(char); // Output: 艓
Java:
char c = '\u8253';
System.out.println(c); // Output: 艓
JSON:
{"text": "\u8253"} // Value: 艓
Python:
char = '\u8253'
print(char) # Output: 艓
Perl:
my $char = "\x{8253}";
print $char; # Output: 艓
PHP:
$char = "\x{8253}";
echo $char; // Output: 艓
Ruby:
char = "\u{8253}"
puts char # Output: 艓
Rust:
let c = '\u{8253}';
println!("{}", c); // Output: 艓
Go:
char := '\u8253'
fmt.Printf("%c\n", char) // Output: 艓
CSS:
/* CSS content property */
.element::before {
content: "\008253"; /* 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%93
MD5:
2de79b7530203631e22096976710df77
SHA1:
44d954a6dcd805cd839c8f04dd8e622e62980c75
Base64:
6ImT