C:
char c = '\u5018';
printf("%c\n", c); // Output: 倘
JavaScript:
const char = '\u5018';
console.log(char); // Output: 倘
Java:
char c = '\u5018';
System.out.println(c); // Output: 倘
JSON:
{"text": "\u5018"} // Value: 倘
Python:
char = '\u5018'
print(char) # Output: 倘
Perl:
my $char = "\x{5018}";
print $char; # Output: 倘
PHP:
$char = "\x{5018}";
echo $char; // Output: 倘
Ruby:
char = "\u{5018}"
puts char # Output: 倘
Rust:
let c = '\u{5018}';
println!("{}", c); // Output: 倘
Go:
char := '\u5018'
fmt.Printf("%c\n", char) // Output: 倘
CSS:
/* CSS content property */
.element::before {
content: "\005018"; /* 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%98
MD5:
8fd74d8c23b105cedf323b904ae074ed
SHA1:
e26c20a0280b4fb2a802741be84ac217c6e908b0
Base64:
5YCY