C:
char c = '\u8255';
printf("%c\n", c); // Output: 艕
JavaScript:
const char = '\u8255';
console.log(char); // Output: 艕
Java:
char c = '\u8255';
System.out.println(c); // Output: 艕
JSON:
{"text": "\u8255"} // Value: 艕
Python:
char = '\u8255'
print(char) # Output: 艕
Perl:
my $char = "\x{8255}";
print $char; # Output: 艕
PHP:
$char = "\x{8255}";
echo $char; // Output: 艕
Ruby:
char = "\u{8255}"
puts char # Output: 艕
Rust:
let c = '\u{8255}';
println!("{}", c); // Output: 艕
Go:
char := '\u8255'
fmt.Printf("%c\n", char) // Output: 艕
CSS:
/* CSS content property */
.element::before {
content: "\008255"; /* 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%95
MD5:
cf60d3057ef1b840e28b6863a282ef22
SHA1:
297975a53ec83d08f642be1efd3c086431a4fc0f
Base64:
6ImV