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