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