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