C:
char c = '\u9829';
printf("%c\n", c); // Output: 頩
JavaScript:
const char = '\u9829';
console.log(char); // Output: 頩
Java:
char c = '\u9829';
System.out.println(c); // Output: 頩
JSON:
{"text": "\u9829"} // Value: 頩
Python:
char = '\u9829'
print(char) # Output: 頩
Perl:
my $char = "\x{9829}";
print $char; # Output: 頩
PHP:
$char = "\x{9829}";
echo $char; // Output: 頩
Ruby:
char = "\u{9829}"
puts char # Output: 頩
Rust:
let c = '\u{9829}';
println!("{}", c); // Output: 頩
Go:
char := '\u9829'
fmt.Printf("%c\n", char) // Output: 頩
CSS:
/* CSS content property */
.element::before {
content: "\009829"; /* 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%A9
MD5:
66f507c96af37aa9d4f6f96fd56d3a33
SHA1:
851f9d36b49af5afd5018677344aa76a64790dea
Base64:
6aCp