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