C:
char c = '\u8263';
printf("%c\n", c); // Output: 艣
JavaScript:
const char = '\u8263';
console.log(char); // Output: 艣
Java:
char c = '\u8263';
System.out.println(c); // Output: 艣
JSON:
{"text": "\u8263"} // Value: 艣
Python:
char = '\u8263'
print(char) # Output: 艣
Perl:
my $char = "\x{8263}";
print $char; # Output: 艣
PHP:
$char = "\x{8263}";
echo $char; // Output: 艣
Ruby:
char = "\u{8263}"
puts char # Output: 艣
Rust:
let c = '\u{8263}';
println!("{}", c); // Output: 艣
Go:
char := '\u8263'
fmt.Printf("%c\n", char) // Output: 艣
CSS:
/* CSS content property */
.element::before {
content: "\008263"; /* 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%A3
MD5:
5bae28b24431f8d7ee8c2bacb6ed5d99
SHA1:
f80879f51a36eff6231e8e318a82450f84038563
Base64:
6Imj