C:
char c = '\u825A';
printf("%c\n", c); // Output: 艚
JavaScript:
const char = '\u825A';
console.log(char); // Output: 艚
Java:
char c = '\u825A';
System.out.println(c); // Output: 艚
JSON:
{"text": "\u825A"} // Value: 艚
Python:
char = '\u825A'
print(char) # Output: 艚
Perl:
my $char = "\x{825A}";
print $char; # Output: 艚
PHP:
$char = "\x{825A}";
echo $char; // Output: 艚
Ruby:
char = "\u{825A}"
puts char # Output: 艚
Rust:
let c = '\u{825A}';
println!("{}", c); // Output: 艚
Go:
char := '\u825A'
fmt.Printf("%c\n", char) // Output: 艚
CSS:
/* CSS content property */
.element::before {
content: "\00825A"; /* 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%9A
MD5:
19bf3c394f5de0568989a7f3099720e3
SHA1:
18c96e71fe69ca7f695d8250f875f0acad58ba4c
Base64:
6Ima