C:
char c = '\u8230';
printf("%c\n", c); // Output: 舰
JavaScript:
const char = '\u8230';
console.log(char); // Output: 舰
Java:
char c = '\u8230';
System.out.println(c); // Output: 舰
JSON:
{"text": "\u8230"} // Value: 舰
Python:
char = '\u8230'
print(char) # Output: 舰
Perl:
my $char = "\x{8230}";
print $char; # Output: 舰
PHP:
$char = "\x{8230}";
echo $char; // Output: 舰
Ruby:
char = "\u{8230}"
puts char # Output: 舰
Rust:
let c = '\u{8230}';
println!("{}", c); // Output: 舰
Go:
char := '\u8230'
fmt.Printf("%c\n", char) // Output: 舰
CSS:
/* CSS content property */
.element::before {
content: "\008230"; /* 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%88%B0
MD5:
ba09ce1f63a3a038d79c7031be0ee880
SHA1:
6fac2b0b847331628d57ec479577a9f26cd88724
Base64:
6Iiw