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