C:
char c = '\u980B';
printf("%c\n", c); // Output: 頋
JavaScript:
const char = '\u980B';
console.log(char); // Output: 頋
Java:
char c = '\u980B';
System.out.println(c); // Output: 頋
JSON:
{"text": "\u980B"} // Value: 頋
Python:
char = '\u980B'
print(char) # Output: 頋
Perl:
my $char = "\x{980B}";
print $char; # Output: 頋
PHP:
$char = "\x{980B}";
echo $char; // Output: 頋
Ruby:
char = "\u{980B}"
puts char # Output: 頋
Rust:
let c = '\u{980B}';
println!("{}", c); // Output: 頋
Go:
char := '\u980B'
fmt.Printf("%c\n", char) // Output: 頋
CSS:
/* CSS content property */
.element::before {
content: "\00980B"; /* 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%8B
MD5:
572ee6e403ecb2bfefbdbf9bb6a484a8
SHA1:
c0156f174f2d0f50d3c22d3aa9ab1643f6b9140c
Base64:
6aCL