C:
char c = '\u9869';
printf("%c\n", c); // Output: 顩
JavaScript:
const char = '\u9869';
console.log(char); // Output: 顩
Java:
char c = '\u9869';
System.out.println(c); // Output: 顩
JSON:
{"text": "\u9869"} // Value: 顩
Python:
char = '\u9869'
print(char) # Output: 顩
Perl:
my $char = "\x{9869}";
print $char; # Output: 顩
PHP:
$char = "\x{9869}";
echo $char; // Output: 顩
Ruby:
char = "\u{9869}"
puts char # Output: 顩
Rust:
let c = '\u{9869}';
println!("{}", c); // Output: 顩
Go:
char := '\u9869'
fmt.Printf("%c\n", char) // Output: 顩
CSS:
/* CSS content property */
.element::before {
content: "\009869"; /* 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%A1%A9
MD5:
79595164a62ba9c9e1d5179f3d1fbfb8
SHA1:
4909c5bce0eb9d52197a9cb590f4c114933d6ad0
Base64:
6aGp