C:
char c = '\u9881';
printf("%c\n", c); // Output: 颁
JavaScript:
const char = '\u9881';
console.log(char); // Output: 颁
Java:
char c = '\u9881';
System.out.println(c); // Output: 颁
JSON:
{"text": "\u9881"} // Value: 颁
Python:
char = '\u9881'
print(char) # Output: 颁
Perl:
my $char = "\x{9881}";
print $char; # Output: 颁
PHP:
$char = "\x{9881}";
echo $char; // Output: 颁
Ruby:
char = "\u{9881}"
puts char # Output: 颁
Rust:
let c = '\u{9881}';
println!("{}", c); // Output: 颁
Go:
char := '\u9881'
fmt.Printf("%c\n", char) // Output: 颁
CSS:
/* CSS content property */
.element::before {
content: "\009881"; /* 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%A2%81
MD5:
14649cb44e2d5b1aaeee8f8482a1f888
SHA1:
25e421f3931e418b33cbd01ca6811baad6dc697d
Base64:
6aKB