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