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