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