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