C:
char c = '\u5770';
printf("%c\n", c); // Output: 坰
JavaScript:
const char = '\u5770';
console.log(char); // Output: 坰
Java:
char c = '\u5770';
System.out.println(c); // Output: 坰
JSON:
{"text": "\u5770"} // Value: 坰
Python:
char = '\u5770'
print(char) # Output: 坰
Perl:
my $char = "\x{5770}";
print $char; # Output: 坰
PHP:
$char = "\x{5770}";
echo $char; // Output: 坰
Ruby:
char = "\u{5770}"
puts char # Output: 坰
Rust:
let c = '\u{5770}';
println!("{}", c); // Output: 坰
Go:
char := '\u5770'
fmt.Printf("%c\n", char) // Output: 坰
CSS:
/* CSS content property */
.element::before {
content: "\005770"; /* 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%B0
MD5:
e6fec15c2c213c31cce7e92847d9c1cb
SHA1:
8b11c77cbeb2d12a8f932500828ecffd3b3e7637
Base64:
5Z2w