C:
char c = '\u9B1F';
printf("%c\n", c); // Output: 鬟
JavaScript:
const char = '\u9B1F';
console.log(char); // Output: 鬟
Java:
char c = '\u9B1F';
System.out.println(c); // Output: 鬟
JSON:
{"text": "\u9B1F"} // Value: 鬟
Python:
char = '\u9B1F'
print(char) # Output: 鬟
Perl:
my $char = "\x{9B1F}";
print $char; # Output: 鬟
PHP:
$char = "\x{9B1F}";
echo $char; // Output: 鬟
Ruby:
char = "\u{9B1F}"
puts char # Output: 鬟
Rust:
let c = '\u{9B1F}';
println!("{}", c); // Output: 鬟
Go:
char := '\u9B1F'
fmt.Printf("%c\n", char) // Output: 鬟
CSS:
/* CSS content property */
.element::before {
content: "\009B1F"; /* 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%AC%9F
MD5:
5d90f89150f04d440a67e96394bc8189
SHA1:
2b120b42730cccb027d807de919af0f64f35fd0d
Base64:
6ayf