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