C:
char c = '\u5012';
printf("%c\n", c); // Output: 倒
JavaScript:
const char = '\u5012';
console.log(char); // Output: 倒
Java:
char c = '\u5012';
System.out.println(c); // Output: 倒
JSON:
{"text": "\u5012"} // Value: 倒
Python:
char = '\u5012'
print(char) # Output: 倒
Perl:
my $char = "\x{5012}";
print $char; # Output: 倒
PHP:
$char = "\x{5012}";
echo $char; // Output: 倒
Ruby:
char = "\u{5012}"
puts char # Output: 倒
Rust:
let c = '\u{5012}';
println!("{}", c); // Output: 倒
Go:
char := '\u5012'
fmt.Printf("%c\n", char) // Output: 倒
CSS:
/* CSS content property */
.element::before {
content: "\005012"; /* 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%92
MD5:
5f0ce41014b954bf03170024b2fdab72
SHA1:
40e2c152cdbfb077804d448ca7973085864eae98
Base64:
5YCS