C:
char c = '\u8269';
printf("%c\n", c); // Output: 艩
JavaScript:
const char = '\u8269';
console.log(char); // Output: 艩
Java:
char c = '\u8269';
System.out.println(c); // Output: 艩
JSON:
{"text": "\u8269"} // Value: 艩
Python:
char = '\u8269'
print(char) # Output: 艩
Perl:
my $char = "\x{8269}";
print $char; # Output: 艩
PHP:
$char = "\x{8269}";
echo $char; // Output: 艩
Ruby:
char = "\u{8269}"
puts char # Output: 艩
Rust:
let c = '\u{8269}';
println!("{}", c); // Output: 艩
Go:
char := '\u8269'
fmt.Printf("%c\n", char) // Output: 艩
CSS:
/* CSS content property */
.element::before {
content: "\008269"; /* 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%A9
MD5:
1422f1b28e7dc6bce74988ed2957d3cc
SHA1:
6773bc774c2f05831a3cb7ab0e305950830cbe00
Base64:
6Imp