C:
char c = '\u7B14';
printf("%c\n", c); // Output: 笔
JavaScript:
const char = '\u7B14';
console.log(char); // Output: 笔
Java:
char c = '\u7B14';
System.out.println(c); // Output: 笔
JSON:
{"text": "\u7B14"} // Value: 笔
Python:
char = '\u7B14'
print(char) # Output: 笔
Perl:
my $char = "\x{7B14}";
print $char; # Output: 笔
PHP:
$char = "\x{7B14}";
echo $char; // Output: 笔
Ruby:
char = "\u{7B14}"
puts char # Output: 笔
Rust:
let c = '\u{7B14}';
println!("{}", c); // Output: 笔
Go:
char := '\u7B14'
fmt.Printf("%c\n", char) // Output: 笔
CSS:
/* CSS content property */
.element::before {
content: "\007B14"; /* 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%AC%94
MD5:
9fb4dafdc6c806217d4f1fd64bc0196b
SHA1:
f4d0aeab9772512b63bbfcff4cf63f4fd9873dfd
Base64:
56yU