C:
char c = '\u8266';
printf("%c\n", c); // Output: 艦
JavaScript:
const char = '\u8266';
console.log(char); // Output: 艦
Java:
char c = '\u8266';
System.out.println(c); // Output: 艦
JSON:
{"text": "\u8266"} // Value: 艦
Python:
char = '\u8266'
print(char) # Output: 艦
Perl:
my $char = "\x{8266}";
print $char; # Output: 艦
PHP:
$char = "\x{8266}";
echo $char; // Output: 艦
Ruby:
char = "\u{8266}"
puts char # Output: 艦
Rust:
let c = '\u{8266}';
println!("{}", c); // Output: 艦
Go:
char := '\u8266'
fmt.Printf("%c\n", char) // Output: 艦
CSS:
/* CSS content property */
.element::before {
content: "\008266"; /* 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%A6
MD5:
2b509ed799c8b8092dce50d988e2d88f
SHA1:
9ce39150cd41e3c9d61c0863cb18bb2ceee04724
Base64:
6Imm