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