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