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