C:
char c = '\u7B5A';
printf("%c\n", c); // Output: 筚
JavaScript:
const char = '\u7B5A';
console.log(char); // Output: 筚
Java:
char c = '\u7B5A';
System.out.println(c); // Output: 筚
JSON:
{"text": "\u7B5A"} // Value: 筚
Python:
char = '\u7B5A'
print(char) # Output: 筚
Perl:
my $char = "\x{7B5A}";
print $char; # Output: 筚
PHP:
$char = "\x{7B5A}";
echo $char; // Output: 筚
Ruby:
char = "\u{7B5A}"
puts char # Output: 筚
Rust:
let c = '\u{7B5A}';
println!("{}", c); // Output: 筚
Go:
char := '\u7B5A'
fmt.Printf("%c\n", char) // Output: 筚
CSS:
/* CSS content property */
.element::before {
content: "\007B5A"; /* 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%9A
MD5:
236a605963ef1a47db9d48cd4ad32717
SHA1:
3395f3a4f683252ccbf01e0a395f4ca04e8f0405
Base64:
562a