C:
char c = '\u77CB';
printf("%c\n", c); // Output: 矋
JavaScript:
const char = '\u77CB';
console.log(char); // Output: 矋
Java:
char c = '\u77CB';
System.out.println(c); // Output: 矋
JSON:
{"text": "\u77CB"} // Value: 矋
Python:
char = '\u77CB'
print(char) # Output: 矋
Perl:
my $char = "\x{77CB}";
print $char; # Output: 矋
PHP:
$char = "\x{77CB}";
echo $char; // Output: 矋
Ruby:
char = "\u{77CB}"
puts char # Output: 矋
Rust:
let c = '\u{77CB}';
println!("{}", c); // Output: 矋
Go:
char := '\u77CB'
fmt.Printf("%c\n", char) // Output: 矋
CSS:
/* CSS content property */
.element::before {
content: "\0077CB"; /* 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%9F%8B
MD5:
7ff3d82e11fc6790ae74f3e3eff98f3e
SHA1:
90d50172ea670e64b603213a393374dca914c161
Base64:
55+L