C:
char c = '\u5746';
printf("%c\n", c); // Output: 坆
JavaScript:
const char = '\u5746';
console.log(char); // Output: 坆
Java:
char c = '\u5746';
System.out.println(c); // Output: 坆
JSON:
{"text": "\u5746"} // Value: 坆
Python:
char = '\u5746'
print(char) # Output: 坆
Perl:
my $char = "\x{5746}";
print $char; # Output: 坆
PHP:
$char = "\x{5746}";
echo $char; // Output: 坆
Ruby:
char = "\u{5746}"
puts char # Output: 坆
Rust:
let c = '\u{5746}';
println!("{}", c); // Output: 坆
Go:
char := '\u5746'
fmt.Printf("%c\n", char) // Output: 坆
CSS:
/* CSS content property */
.element::before {
content: "\005746"; /* 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%86
MD5:
061cbf489ab2e560c2c139671598f0d8
SHA1:
e7047ea4059d6bc835f6b1a43de87e4de6318ae2
Base64:
5Z2G