C:
char c = '\u8251';
printf("%c\n", c); // Output: 艑
JavaScript:
const char = '\u8251';
console.log(char); // Output: 艑
Java:
char c = '\u8251';
System.out.println(c); // Output: 艑
JSON:
{"text": "\u8251"} // Value: 艑
Python:
char = '\u8251'
print(char) # Output: 艑
Perl:
my $char = "\x{8251}";
print $char; # Output: 艑
PHP:
$char = "\x{8251}";
echo $char; // Output: 艑
Ruby:
char = "\u{8251}"
puts char # Output: 艑
Rust:
let c = '\u{8251}';
println!("{}", c); // Output: 艑
Go:
char := '\u8251'
fmt.Printf("%c\n", char) // Output: 艑
CSS:
/* CSS content property */
.element::before {
content: "\008251"; /* 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%91
MD5:
fcd559337233d46d4d69ff50322f1a78
SHA1:
9aacceba3ddc182079ef80f422ab45ccbf4d36a3
Base64:
6ImR