C:
char c = '\u9860';
printf("%c\n", c); // Output: 顠
JavaScript:
const char = '\u9860';
console.log(char); // Output: 顠
Java:
char c = '\u9860';
System.out.println(c); // Output: 顠
JSON:
{"text": "\u9860"} // Value: 顠
Python:
char = '\u9860'
print(char) # Output: 顠
Perl:
my $char = "\x{9860}";
print $char; # Output: 顠
PHP:
$char = "\x{9860}";
echo $char; // Output: 顠
Ruby:
char = "\u{9860}"
puts char # Output: 顠
Rust:
let c = '\u{9860}';
println!("{}", c); // Output: 顠
Go:
char := '\u9860'
fmt.Printf("%c\n", char) // Output: 顠
CSS:
/* CSS content property */
.element::before {
content: "\009860"; /* 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%A0
MD5:
815bab3e1073b27d7debfa94487318a9
SHA1:
dfbd6a119fe0921ef9327c4526d427423c4b9697
Base64:
6aGg