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