C:
char c = '\u8258';
printf("%c\n", c); // Output: 艘
JavaScript:
const char = '\u8258';
console.log(char); // Output: 艘
Java:
char c = '\u8258';
System.out.println(c); // Output: 艘
JSON:
{"text": "\u8258"} // Value: 艘
Python:
char = '\u8258'
print(char) # Output: 艘
Perl:
my $char = "\x{8258}";
print $char; # Output: 艘
PHP:
$char = "\x{8258}";
echo $char; // Output: 艘
Ruby:
char = "\u{8258}"
puts char # Output: 艘
Rust:
let c = '\u{8258}';
println!("{}", c); // Output: 艘
Go:
char := '\u8258'
fmt.Printf("%c\n", char) // Output: 艘
CSS:
/* CSS content property */
.element::before {
content: "\008258"; /* 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%98
MD5:
a8a12881cf498e4ae896f339f8241d0f
SHA1:
b27dd67a137b7c275b7e728f2f1386016a127301
Base64:
6ImY