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