C:
char c = '\u5752';
printf("%c\n", c); // Output: 坒
JavaScript:
const char = '\u5752';
console.log(char); // Output: 坒
Java:
char c = '\u5752';
System.out.println(c); // Output: 坒
JSON:
{"text": "\u5752"} // Value: 坒
Python:
char = '\u5752'
print(char) # Output: 坒
Perl:
my $char = "\x{5752}";
print $char; # Output: 坒
PHP:
$char = "\x{5752}";
echo $char; // Output: 坒
Ruby:
char = "\u{5752}"
puts char # Output: 坒
Rust:
let c = '\u{5752}';
println!("{}", c); // Output: 坒
Go:
char := '\u5752'
fmt.Printf("%c\n", char) // Output: 坒
CSS:
/* CSS content property */
.element::before {
content: "\005752"; /* 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%92
MD5:
b6a26e9360496e5a18125c1f0f1d0a85
SHA1:
15465d3479e94aaebe6f68841def22e449da0636
Base64:
5Z2S