C:
char c = '\u85E1';
printf("%c\n", c); // Output: 藡
JavaScript:
const char = '\u85E1';
console.log(char); // Output: 藡
Java:
char c = '\u85E1';
System.out.println(c); // Output: 藡
JSON:
{"text": "\u85E1"} // Value: 藡
Python:
char = '\u85E1'
print(char) # Output: 藡
Perl:
my $char = "\x{85E1}";
print $char; # Output: 藡
PHP:
$char = "\x{85E1}";
echo $char; // Output: 藡
Ruby:
char = "\u{85E1}"
puts char # Output: 藡
Rust:
let c = '\u{85E1}';
println!("{}", c); // Output: 藡
Go:
char := '\u85E1'
fmt.Printf("%c\n", char) // Output: 藡
CSS:
/* CSS content property */
.element::before {
content: "\0085E1"; /* 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=%E8%97%A1
MD5:
5e8d3ce3d4a025a7fafe3bbf3efda610
SHA1:
af833154e5c9a817d67ec4f21d398733dbbdf05a
Base64:
6Jeh