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