C:
char c = '\u7C3A';
printf("%c\n", c); // Output: 簺
JavaScript:
const char = '\u7C3A';
console.log(char); // Output: 簺
Java:
char c = '\u7C3A';
System.out.println(c); // Output: 簺
JSON:
{"text": "\u7C3A"} // Value: 簺
Python:
char = '\u7C3A'
print(char) # Output: 簺
Perl:
my $char = "\x{7C3A}";
print $char; # Output: 簺
PHP:
$char = "\x{7C3A}";
echo $char; // Output: 簺
Ruby:
char = "\u{7C3A}"
puts char # Output: 簺
Rust:
let c = '\u{7C3A}';
println!("{}", c); // Output: 簺
Go:
char := '\u7C3A'
fmt.Printf("%c\n", char) // Output: 簺
CSS:
/* CSS content property */
.element::before {
content: "\007C3A"; /* 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%B0%BA
MD5:
756b643d0c0d12840c4779c4211d4c36
SHA1:
80f07c47d15865b60f007b8f293c8e6f734137ff
Base64:
57C6