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