C:
char c = '\u85C7';
printf("%c\n", c); // Output: 藇
JavaScript:
const char = '\u85C7';
console.log(char); // Output: 藇
Java:
char c = '\u85C7';
System.out.println(c); // Output: 藇
JSON:
{"text": "\u85C7"} // Value: 藇
Python:
char = '\u85C7'
print(char) # Output: 藇
Perl:
my $char = "\x{85C7}";
print $char; # Output: 藇
PHP:
$char = "\x{85C7}";
echo $char; // Output: 藇
Ruby:
char = "\u{85C7}"
puts char # Output: 藇
Rust:
let c = '\u{85C7}';
println!("{}", c); // Output: 藇
Go:
char := '\u85C7'
fmt.Printf("%c\n", char) // Output: 藇
CSS:
/* CSS content property */
.element::before {
content: "\0085C7"; /* 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%87
MD5:
9261eb4091e9833b764391bd7c06fd36
SHA1:
2a3842450cccf4fe58990c3e6a4449eb5d746eff
Base64:
6JeH