C:
char c = '\u5763';
printf("%c\n", c); // Output: 坣
JavaScript:
const char = '\u5763';
console.log(char); // Output: 坣
Java:
char c = '\u5763';
System.out.println(c); // Output: 坣
JSON:
{"text": "\u5763"} // Value: 坣
Python:
char = '\u5763'
print(char) # Output: 坣
Perl:
my $char = "\x{5763}";
print $char; # Output: 坣
PHP:
$char = "\x{5763}";
echo $char; // Output: 坣
Ruby:
char = "\u{5763}"
puts char # Output: 坣
Rust:
let c = '\u{5763}';
println!("{}", c); // Output: 坣
Go:
char := '\u5763'
fmt.Printf("%c\n", char) // Output: 坣
CSS:
/* CSS content property */
.element::before {
content: "\005763"; /* 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%A3
MD5:
0f2c15f167f150eb972419450f19b7a0
SHA1:
80e48a607cc2d1d9a4b31f60b4a02078c25fc116
Base64:
5Z2j