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