C:
char c = '\u9862';
printf("%c\n", c); // Output: 顢
JavaScript:
const char = '\u9862';
console.log(char); // Output: 顢
Java:
char c = '\u9862';
System.out.println(c); // Output: 顢
JSON:
{"text": "\u9862"} // Value: 顢
Python:
char = '\u9862'
print(char) # Output: 顢
Perl:
my $char = "\x{9862}";
print $char; # Output: 顢
PHP:
$char = "\x{9862}";
echo $char; // Output: 顢
Ruby:
char = "\u{9862}"
puts char # Output: 顢
Rust:
let c = '\u{9862}';
println!("{}", c); // Output: 顢
Go:
char := '\u9862'
fmt.Printf("%c\n", char) // Output: 顢
CSS:
/* CSS content property */
.element::before {
content: "\009862"; /* 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%A2
MD5:
534e2b592b9f93b45e8d83663776fa19
SHA1:
9912a1c47bc3873318fddb920711c28ca0aaebc2
Base64:
6aGi