C:
char c = '\u5EE3';
printf("%c\n", c); // Output: 廣
JavaScript:
const char = '\u5EE3';
console.log(char); // Output: 廣
Java:
char c = '\u5EE3';
System.out.println(c); // Output: 廣
JSON:
{"text": "\u5EE3"} // Value: 廣
Python:
char = '\u5EE3'
print(char) # Output: 廣
Perl:
my $char = "\x{5EE3}";
print $char; # Output: 廣
PHP:
$char = "\x{5EE3}";
echo $char; // Output: 廣
Ruby:
char = "\u{5EE3}"
puts char # Output: 廣
Rust:
let c = '\u{5EE3}';
println!("{}", c); // Output: 廣
Go:
char := '\u5EE3'
fmt.Printf("%c\n", char) // Output: 廣
CSS:
/* CSS content property */
.element::before {
content: "\005EE3"; /* 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=%E5%BB%A3
MD5:
28942df5a7e8e8ecb64d3b711bfd0cff
SHA1:
71c4204c9f0738cba8884331d3e14a96f7d1cc72
Base64:
5buj