C:
char c = '\u5744';
printf("%c\n", c); // Output: 坄
JavaScript:
const char = '\u5744';
console.log(char); // Output: 坄
Java:
char c = '\u5744';
System.out.println(c); // Output: 坄
JSON:
{"text": "\u5744"} // Value: 坄
Python:
char = '\u5744'
print(char) # Output: 坄
Perl:
my $char = "\x{5744}";
print $char; # Output: 坄
PHP:
$char = "\x{5744}";
echo $char; // Output: 坄
Ruby:
char = "\u{5744}"
puts char # Output: 坄
Rust:
let c = '\u{5744}';
println!("{}", c); // Output: 坄
Go:
char := '\u5744'
fmt.Printf("%c\n", char) // Output: 坄
CSS:
/* CSS content property */
.element::before {
content: "\005744"; /* 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%84
MD5:
b95ec1afa840b9f7e12256260b8dcbfc
SHA1:
5378bce318ea8c38c3c9a2a782da5fe2ea8db8c1
Base64:
5Z2E