C:
char c = '\u5EE2';
printf("%c\n", c); // Output: 廢
JavaScript:
const char = '\u5EE2';
console.log(char); // Output: 廢
Java:
char c = '\u5EE2';
System.out.println(c); // Output: 廢
JSON:
{"text": "\u5EE2"} // Value: 廢
Python:
char = '\u5EE2'
print(char) # Output: 廢
Perl:
my $char = "\x{5EE2}";
print $char; # Output: 廢
PHP:
$char = "\x{5EE2}";
echo $char; // Output: 廢
Ruby:
char = "\u{5EE2}"
puts char # Output: 廢
Rust:
let c = '\u{5EE2}';
println!("{}", c); // Output: 廢
Go:
char := '\u5EE2'
fmt.Printf("%c\n", char) // Output: 廢
CSS:
/* CSS content property */
.element::before {
content: "\005EE2"; /* 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%A2
MD5:
985832c368268fdb437932f269b352b5
SHA1:
a39421476f6f5e12ce58eaa07982eeb7fcf9e52f
Base64:
5bui