C:
char c = '\u5771';
printf("%c\n", c); // Output: 坱
JavaScript:
const char = '\u5771';
console.log(char); // Output: 坱
Java:
char c = '\u5771';
System.out.println(c); // Output: 坱
JSON:
{"text": "\u5771"} // Value: 坱
Python:
char = '\u5771'
print(char) # Output: 坱
Perl:
my $char = "\x{5771}";
print $char; # Output: 坱
PHP:
$char = "\x{5771}";
echo $char; // Output: 坱
Ruby:
char = "\u{5771}"
puts char # Output: 坱
Rust:
let c = '\u{5771}';
println!("{}", c); // Output: 坱
Go:
char := '\u5771'
fmt.Printf("%c\n", char) // Output: 坱
CSS:
/* CSS content property */
.element::before {
content: "\005771"; /* 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%B1
MD5:
9517a4458525878a0c67249d7d509b40
SHA1:
826f1239b2df5173474d53f4dc2b0108673776dc
Base64:
5Z2x