C:
char c = '\u5774';
printf("%c\n", c); // Output: 坴
JavaScript:
const char = '\u5774';
console.log(char); // Output: 坴
Java:
char c = '\u5774';
System.out.println(c); // Output: 坴
JSON:
{"text": "\u5774"} // Value: 坴
Python:
char = '\u5774'
print(char) # Output: 坴
Perl:
my $char = "\x{5774}";
print $char; # Output: 坴
PHP:
$char = "\x{5774}";
echo $char; // Output: 坴
Ruby:
char = "\u{5774}"
puts char # Output: 坴
Rust:
let c = '\u{5774}';
println!("{}", c); // Output: 坴
Go:
char := '\u5774'
fmt.Printf("%c\n", char) // Output: 坴
CSS:
/* CSS content property */
.element::before {
content: "\005774"; /* 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%B4
MD5:
7f2d85219a6bede905f7919e045ef8b0
SHA1:
155b579c5f80e17dc712a74d278a9c0142e12810
Base64:
5Z20