C:
char c = '\u7B7C';
printf("%c\n", c); // Output: 筼
JavaScript:
const char = '\u7B7C';
console.log(char); // Output: 筼
Java:
char c = '\u7B7C';
System.out.println(c); // Output: 筼
JSON:
{"text": "\u7B7C"} // Value: 筼
Python:
char = '\u7B7C'
print(char) # Output: 筼
Perl:
my $char = "\x{7B7C}";
print $char; # Output: 筼
PHP:
$char = "\x{7B7C}";
echo $char; // Output: 筼
Ruby:
char = "\u{7B7C}"
puts char # Output: 筼
Rust:
let c = '\u{7B7C}';
println!("{}", c); // Output: 筼
Go:
char := '\u7B7C'
fmt.Printf("%c\n", char) // Output: 筼
CSS:
/* CSS content property */
.element::before {
content: "\007B7C"; /* 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%AD%BC
MD5:
02ec44512d5ecd0c49156cc13d40fd7d
SHA1:
cebd70089637035aadaed471fba9f7be078a2a00
Base64:
5628