C:
char c = '\u7C3B';
printf("%c\n", c); // Output: 簻
JavaScript:
const char = '\u7C3B';
console.log(char); // Output: 簻
Java:
char c = '\u7C3B';
System.out.println(c); // Output: 簻
JSON:
{"text": "\u7C3B"} // Value: 簻
Python:
char = '\u7C3B'
print(char) # Output: 簻
Perl:
my $char = "\x{7C3B}";
print $char; # Output: 簻
PHP:
$char = "\x{7C3B}";
echo $char; // Output: 簻
Ruby:
char = "\u{7C3B}"
puts char # Output: 簻
Rust:
let c = '\u{7C3B}';
println!("{}", c); // Output: 簻
Go:
char := '\u7C3B'
fmt.Printf("%c\n", char) // Output: 簻
CSS:
/* CSS content property */
.element::before {
content: "\007C3B"; /* 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%BB
MD5:
1eab5d63d970ac030cf09065a88d9bbd
SHA1:
3efa14ff70fc9534dab4a73b1882b3d17e6894e2
Base64:
57C7