C:
char c = '\u8268';
printf("%c\n", c); // Output: 艨
JavaScript:
const char = '\u8268';
console.log(char); // Output: 艨
Java:
char c = '\u8268';
System.out.println(c); // Output: 艨
JSON:
{"text": "\u8268"} // Value: 艨
Python:
char = '\u8268'
print(char) # Output: 艨
Perl:
my $char = "\x{8268}";
print $char; # Output: 艨
PHP:
$char = "\x{8268}";
echo $char; // Output: 艨
Ruby:
char = "\u{8268}"
puts char # Output: 艨
Rust:
let c = '\u{8268}';
println!("{}", c); // Output: 艨
Go:
char := '\u8268'
fmt.Printf("%c\n", char) // Output: 艨
CSS:
/* CSS content property */
.element::before {
content: "\008268"; /* 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%A8
MD5:
02cf872d3790af81598e54b5361eadd9
SHA1:
df078ac925f8789af649c5e73db7feb0d3e58c85
Base64:
6Imo