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