C:
char c = '\u8244';
printf("%c\n", c); // Output: 艄
JavaScript:
const char = '\u8244';
console.log(char); // Output: 艄
Java:
char c = '\u8244';
System.out.println(c); // Output: 艄
JSON:
{"text": "\u8244"} // Value: 艄
Python:
char = '\u8244'
print(char) # Output: 艄
Perl:
my $char = "\x{8244}";
print $char; # Output: 艄
PHP:
$char = "\x{8244}";
echo $char; // Output: 艄
Ruby:
char = "\u{8244}"
puts char # Output: 艄
Rust:
let c = '\u{8244}';
println!("{}", c); // Output: 艄
Go:
char := '\u8244'
fmt.Printf("%c\n", char) // Output: 艄
CSS:
/* CSS content property */
.element::before {
content: "\008244"; /* 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%84
MD5:
d045b8ee0e92d904546197f69fdec7d9
SHA1:
926bb79cf577aa6ac5ecf8b36e2e00b7d12051d1
Base64:
6ImE