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