C:
char c = '\u5741';
printf("%c\n", c); // Output: 坁
JavaScript:
const char = '\u5741';
console.log(char); // Output: 坁
Java:
char c = '\u5741';
System.out.println(c); // Output: 坁
JSON:
{"text": "\u5741"} // Value: 坁
Python:
char = '\u5741'
print(char) # Output: 坁
Perl:
my $char = "\x{5741}";
print $char; # Output: 坁
PHP:
$char = "\x{5741}";
echo $char; // Output: 坁
Ruby:
char = "\u{5741}"
puts char # Output: 坁
Rust:
let c = '\u{5741}';
println!("{}", c); // Output: 坁
Go:
char := '\u5741'
fmt.Printf("%c\n", char) // Output: 坁
CSS:
/* CSS content property */
.element::before {
content: "\005741"; /* 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%81
MD5:
36149edfdc3953b24c77d20337c56e41
SHA1:
28c94dc0abca670a75eda18bfec8456c2e0aa667
Base64:
5Z2B