C:
char c = '\u77DA';
printf("%c\n", c); // Output: 矚
JavaScript:
const char = '\u77DA';
console.log(char); // Output: 矚
Java:
char c = '\u77DA';
System.out.println(c); // Output: 矚
JSON:
{"text": "\u77DA"} // Value: 矚
Python:
char = '\u77DA'
print(char) # Output: 矚
Perl:
my $char = "\x{77DA}";
print $char; # Output: 矚
PHP:
$char = "\x{77DA}";
echo $char; // Output: 矚
Ruby:
char = "\u{77DA}"
puts char # Output: 矚
Rust:
let c = '\u{77DA}';
println!("{}", c); // Output: 矚
Go:
char := '\u77DA'
fmt.Printf("%c\n", char) // Output: 矚
CSS:
/* CSS content property */
.element::before {
content: "\0077DA"; /* 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%9A
MD5:
ebc3777e90f9e2b36f359eea40122d40
SHA1:
75fed29f26846591305470dd27cc123663180ad5
Base64:
55+a