C:
char c = '\u5749';
printf("%c\n", c); // Output: 坉
JavaScript:
const char = '\u5749';
console.log(char); // Output: 坉
Java:
char c = '\u5749';
System.out.println(c); // Output: 坉
JSON:
{"text": "\u5749"} // Value: 坉
Python:
char = '\u5749'
print(char) # Output: 坉
Perl:
my $char = "\x{5749}";
print $char; # Output: 坉
PHP:
$char = "\x{5749}";
echo $char; // Output: 坉
Ruby:
char = "\u{5749}"
puts char # Output: 坉
Rust:
let c = '\u{5749}';
println!("{}", c); // Output: 坉
Go:
char := '\u5749'
fmt.Printf("%c\n", char) // Output: 坉
CSS:
/* CSS content property */
.element::before {
content: "\005749"; /* 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%89
MD5:
88c9640cfe74ab44490259636efa381f
SHA1:
63afc9aae8d79b34512d66f214191de037f88d3e
Base64:
5Z2J