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