C:
char c = '\u7B7B';
printf("%c\n", c); // Output: 筻
JavaScript:
const char = '\u7B7B';
console.log(char); // Output: 筻
Java:
char c = '\u7B7B';
System.out.println(c); // Output: 筻
JSON:
{"text": "\u7B7B"} // Value: 筻
Python:
char = '\u7B7B'
print(char) # Output: 筻
Perl:
my $char = "\x{7B7B}";
print $char; # Output: 筻
PHP:
$char = "\x{7B7B}";
echo $char; // Output: 筻
Ruby:
char = "\u{7B7B}"
puts char # Output: 筻
Rust:
let c = '\u{7B7B}';
println!("{}", c); // Output: 筻
Go:
char := '\u7B7B'
fmt.Printf("%c\n", char) // Output: 筻
CSS:
/* CSS content property */
.element::before {
content: "\007B7B"; /* 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%BB
MD5:
dcc849a19986d566ebd08f0337860941
SHA1:
80acfe6e397bf7c9e222d14577086ff0430bec3b
Base64:
5627