C:
char c = '\u5756';
printf("%c\n", c); // Output: 坖
JavaScript:
const char = '\u5756';
console.log(char); // Output: 坖
Java:
char c = '\u5756';
System.out.println(c); // Output: 坖
JSON:
{"text": "\u5756"} // Value: 坖
Python:
char = '\u5756'
print(char) # Output: 坖
Perl:
my $char = "\x{5756}";
print $char; # Output: 坖
PHP:
$char = "\x{5756}";
echo $char; // Output: 坖
Ruby:
char = "\u{5756}"
puts char # Output: 坖
Rust:
let c = '\u{5756}';
println!("{}", c); // Output: 坖
Go:
char := '\u5756'
fmt.Printf("%c\n", char) // Output: 坖
CSS:
/* CSS content property */
.element::before {
content: "\005756"; /* 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%96
MD5:
5048725740e0ba10a859385be0c70679
SHA1:
faeca7d2931064e6ebe43f2527465948c0e10c80
Base64:
5Z2W