C:
char c = '\u5013';
printf("%c\n", c); // Output: 倓
JavaScript:
const char = '\u5013';
console.log(char); // Output: 倓
Java:
char c = '\u5013';
System.out.println(c); // Output: 倓
JSON:
{"text": "\u5013"} // Value: 倓
Python:
char = '\u5013'
print(char) # Output: 倓
Perl:
my $char = "\x{5013}";
print $char; # Output: 倓
PHP:
$char = "\x{5013}";
echo $char; // Output: 倓
Ruby:
char = "\u{5013}"
puts char # Output: 倓
Rust:
let c = '\u{5013}';
println!("{}", c); // Output: 倓
Go:
char := '\u5013'
fmt.Printf("%c\n", char) // Output: 倓
CSS:
/* CSS content property */
.element::before {
content: "\005013"; /* 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%93
MD5:
af5aa02b843de6bbc22c72004c9d0c92
SHA1:
883718df911d17bcacfb87ea2133d7c882391891
Base64:
5YCT