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