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