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