C:
char c = '\u7BC2';
printf("%c\n", c); // Output: 篂
JavaScript:
const char = '\u7BC2';
console.log(char); // Output: 篂
Java:
char c = '\u7BC2';
System.out.println(c); // Output: 篂
JSON:
{"text": "\u7BC2"} // Value: 篂
Python:
char = '\u7BC2'
print(char) # Output: 篂
Perl:
my $char = "\x{7BC2}";
print $char; # Output: 篂
PHP:
$char = "\x{7BC2}";
echo $char; // Output: 篂
Ruby:
char = "\u{7BC2}"
puts char # Output: 篂
Rust:
let c = '\u{7BC2}';
println!("{}", c); // Output: 篂
Go:
char := '\u7BC2'
fmt.Printf("%c\n", char) // Output: 篂
CSS:
/* CSS content property */
.element::before {
content: "\007BC2"; /* 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=%E7%AF%82
MD5:
8b6dd7baa037f883ec431b69a23435f9
SHA1:
f4d513f145e38649528ac755f9083ab658fec9b6
Base64:
56+C