C:
char c = '\u8250';
printf("%c\n", c); // Output: 艐
JavaScript:
const char = '\u8250';
console.log(char); // Output: 艐
Java:
char c = '\u8250';
System.out.println(c); // Output: 艐
JSON:
{"text": "\u8250"} // Value: 艐
Python:
char = '\u8250'
print(char) # Output: 艐
Perl:
my $char = "\x{8250}";
print $char; # Output: 艐
PHP:
$char = "\x{8250}";
echo $char; // Output: 艐
Ruby:
char = "\u{8250}"
puts char # Output: 艐
Rust:
let c = '\u{8250}';
println!("{}", c); // Output: 艐
Go:
char := '\u8250'
fmt.Printf("%c\n", char) // Output: 艐
CSS:
/* CSS content property */
.element::before {
content: "\008250"; /* 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%90
MD5:
45a7e45d08c5b69a7d7f03f5fc3cdfeb
SHA1:
c311000c8b28fa454fc2b8541c17b122764336c0
Base64:
6ImQ