C:
char c = '\u5755';
printf("%c\n", c); // Output: 坕
JavaScript:
const char = '\u5755';
console.log(char); // Output: 坕
Java:
char c = '\u5755';
System.out.println(c); // Output: 坕
JSON:
{"text": "\u5755"} // Value: 坕
Python:
char = '\u5755'
print(char) # Output: 坕
Perl:
my $char = "\x{5755}";
print $char; # Output: 坕
PHP:
$char = "\x{5755}";
echo $char; // Output: 坕
Ruby:
char = "\u{5755}"
puts char # Output: 坕
Rust:
let c = '\u{5755}';
println!("{}", c); // Output: 坕
Go:
char := '\u5755'
fmt.Printf("%c\n", char) // Output: 坕
CSS:
/* CSS content property */
.element::before {
content: "\005755"; /* 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%95
MD5:
eb36b99bb53fb3603190819595d47742
SHA1:
c792d169fb21482f4f5737d9747332b788d19c61
Base64:
5Z2V