C:
char c = '\u824B';
printf("%c\n", c); // Output: 艋
JavaScript:
const char = '\u824B';
console.log(char); // Output: 艋
Java:
char c = '\u824B';
System.out.println(c); // Output: 艋
JSON:
{"text": "\u824B"} // Value: 艋
Python:
char = '\u824B'
print(char) # Output: 艋
Perl:
my $char = "\x{824B}";
print $char; # Output: 艋
PHP:
$char = "\x{824B}";
echo $char; // Output: 艋
Ruby:
char = "\u{824B}"
puts char # Output: 艋
Rust:
let c = '\u{824B}';
println!("{}", c); // Output: 艋
Go:
char := '\u824B'
fmt.Printf("%c\n", char) // Output: 艋
CSS:
/* CSS content property */
.element::before {
content: "\00824B"; /* 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%8B
MD5:
d6a9dbfa59b5681e009ea03bb08abee8
SHA1:
5ba42d1909f653247968ebadf28c54bb10439963
Base64:
6ImL