C:
char c = '\u7B64';
printf("%c\n", c); // Output: 筤
JavaScript:
const char = '\u7B64';
console.log(char); // Output: 筤
Java:
char c = '\u7B64';
System.out.println(c); // Output: 筤
JSON:
{"text": "\u7B64"} // Value: 筤
Python:
char = '\u7B64'
print(char) # Output: 筤
Perl:
my $char = "\x{7B64}";
print $char; # Output: 筤
PHP:
$char = "\x{7B64}";
echo $char; // Output: 筤
Ruby:
char = "\u{7B64}"
puts char # Output: 筤
Rust:
let c = '\u{7B64}';
println!("{}", c); // Output: 筤
Go:
char := '\u7B64'
fmt.Printf("%c\n", char) // Output: 筤
CSS:
/* CSS content property */
.element::before {
content: "\007B64"; /* 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%A4
MD5:
6c4073e36e539c9e703f5a23699d945f
SHA1:
79fcafbfb2eb924a5ff9c489cc78d04372fe2694
Base64:
562k