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