C:
char c = '\u5778';
printf("%c\n", c); // Output: 坸
JavaScript:
const char = '\u5778';
console.log(char); // Output: 坸
Java:
char c = '\u5778';
System.out.println(c); // Output: 坸
JSON:
{"text": "\u5778"} // Value: 坸
Python:
char = '\u5778'
print(char) # Output: 坸
Perl:
my $char = "\x{5778}";
print $char; # Output: 坸
PHP:
$char = "\x{5778}";
echo $char; // Output: 坸
Ruby:
char = "\u{5778}"
puts char # Output: 坸
Rust:
let c = '\u{5778}';
println!("{}", c); // Output: 坸
Go:
char := '\u5778'
fmt.Printf("%c\n", char) // Output: 坸
CSS:
/* CSS content property */
.element::before {
content: "\005778"; /* 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%B8
MD5:
69a33aa77fe8e1002ebc7ffa4fced865
SHA1:
f8b786b672bf4f73dd87894f2e53dffdd4f9868b
Base64:
5Z24