C:
char c = '\u9AE3';
printf("%c\n", c); // Output: 髣
JavaScript:
const char = '\u9AE3';
console.log(char); // Output: 髣
Java:
char c = '\u9AE3';
System.out.println(c); // Output: 髣
JSON:
{"text": "\u9AE3"} // Value: 髣
Python:
char = '\u9AE3'
print(char) # Output: 髣
Perl:
my $char = "\x{9AE3}";
print $char; # Output: 髣
PHP:
$char = "\x{9AE3}";
echo $char; // Output: 髣
Ruby:
char = "\u{9AE3}"
puts char # Output: 髣
Rust:
let c = '\u{9AE3}';
println!("{}", c); // Output: 髣
Go:
char := '\u9AE3'
fmt.Printf("%c\n", char) // Output: 髣
CSS:
/* CSS content property */
.element::before {
content: "\009AE3"; /* 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=%E9%AB%A3
MD5:
070c66dbfd861f6e82b5d1223c7784f9
SHA1:
1b1fa4bb03114f56ffe6af5a4d43c0c4cc60ecef
Base64:
6auj