C:
char c = '\u5769';
printf("%c\n", c); // Output: 坩
JavaScript:
const char = '\u5769';
console.log(char); // Output: 坩
Java:
char c = '\u5769';
System.out.println(c); // Output: 坩
JSON:
{"text": "\u5769"} // Value: 坩
Python:
char = '\u5769'
print(char) # Output: 坩
Perl:
my $char = "\x{5769}";
print $char; # Output: 坩
PHP:
$char = "\x{5769}";
echo $char; // Output: 坩
Ruby:
char = "\u{5769}"
puts char # Output: 坩
Rust:
let c = '\u{5769}';
println!("{}", c); // Output: 坩
Go:
char := '\u5769'
fmt.Printf("%c\n", char) // Output: 坩
CSS:
/* CSS content property */
.element::before {
content: "\005769"; /* 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%A9
MD5:
bff3438d1094a02c6f53eb518f541917
SHA1:
935384b73693e39afb6a02dc9fb95165e29a9846
Base64:
5Z2p