C:
char c = '\u5773';
printf("%c\n", c); // Output: 坳
JavaScript:
const char = '\u5773';
console.log(char); // Output: 坳
Java:
char c = '\u5773';
System.out.println(c); // Output: 坳
JSON:
{"text": "\u5773"} // Value: 坳
Python:
char = '\u5773'
print(char) # Output: 坳
Perl:
my $char = "\x{5773}";
print $char; # Output: 坳
PHP:
$char = "\x{5773}";
echo $char; // Output: 坳
Ruby:
char = "\u{5773}"
puts char # Output: 坳
Rust:
let c = '\u{5773}';
println!("{}", c); // Output: 坳
Go:
char := '\u5773'
fmt.Printf("%c\n", char) // Output: 坳
CSS:
/* CSS content property */
.element::before {
content: "\005773"; /* 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%9D%B3
MD5:
47e57328b29bda644e6beaa0573aacfc
SHA1:
50d4085b328ae238f586fbb59bbc5a2f4c5b7785
Base64:
5Z2z