C:
char c = '\u7B17';
printf("%c\n", c); // Output: 笗
JavaScript:
const char = '\u7B17';
console.log(char); // Output: 笗
Java:
char c = '\u7B17';
System.out.println(c); // Output: 笗
JSON:
{"text": "\u7B17"} // Value: 笗
Python:
char = '\u7B17'
print(char) # Output: 笗
Perl:
my $char = "\x{7B17}";
print $char; # Output: 笗
PHP:
$char = "\x{7B17}";
echo $char; // Output: 笗
Ruby:
char = "\u{7B17}"
puts char # Output: 笗
Rust:
let c = '\u{7B17}';
println!("{}", c); // Output: 笗
Go:
char := '\u7B17'
fmt.Printf("%c\n", char) // Output: 笗
CSS:
/* CSS content property */
.element::before {
content: "\007B17"; /* 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%97
MD5:
5301dd3c7fda8a45c94697f0458762f3
SHA1:
48fc5de7ed29791a9167bcdb889840b7e74a00b0
Base64:
56yX