C:
char c = '\u5776';
printf("%c\n", c); // Output: 坶
JavaScript:
const char = '\u5776';
console.log(char); // Output: 坶
Java:
char c = '\u5776';
System.out.println(c); // Output: 坶
JSON:
{"text": "\u5776"} // Value: 坶
Python:
char = '\u5776'
print(char) # Output: 坶
Perl:
my $char = "\x{5776}";
print $char; # Output: 坶
PHP:
$char = "\x{5776}";
echo $char; // Output: 坶
Ruby:
char = "\u{5776}"
puts char # Output: 坶
Rust:
let c = '\u{5776}';
println!("{}", c); // Output: 坶
Go:
char := '\u5776'
fmt.Printf("%c\n", char) // Output: 坶
CSS:
/* CSS content property */
.element::before {
content: "\005776"; /* 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%B6
MD5:
fc008ef5f60c674364610e7755a3fa5b
SHA1:
2a467025fcb2a83c6b09787a600974a10990c406
Base64:
5Z22