C:
char c = '\u9891';
printf("%c\n", c); // Output: 频
JavaScript:
const char = '\u9891';
console.log(char); // Output: 频
Java:
char c = '\u9891';
System.out.println(c); // Output: 频
JSON:
{"text": "\u9891"} // Value: 频
Python:
char = '\u9891'
print(char) # Output: 频
Perl:
my $char = "\x{9891}";
print $char; # Output: 频
PHP:
$char = "\x{9891}";
echo $char; // Output: 频
Ruby:
char = "\u{9891}"
puts char # Output: 频
Rust:
let c = '\u{9891}';
println!("{}", c); // Output: 频
Go:
char := '\u9891'
fmt.Printf("%c\n", char) // Output: 频
CSS:
/* CSS content property */
.element::before {
content: "\009891"; /* 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%91
MD5:
b4050f71aadecade778fcc91660b86ed
SHA1:
f55f362c8aa8835810b829f1c03f4cc61caa65b9
Base64:
6aKR