C:
char c = '\u5010';
printf("%c\n", c); // Output: 倐
JavaScript:
const char = '\u5010';
console.log(char); // Output: 倐
Java:
char c = '\u5010';
System.out.println(c); // Output: 倐
JSON:
{"text": "\u5010"} // Value: 倐
Python:
char = '\u5010'
print(char) # Output: 倐
Perl:
my $char = "\x{5010}";
print $char; # Output: 倐
PHP:
$char = "\x{5010}";
echo $char; // Output: 倐
Ruby:
char = "\u{5010}"
puts char # Output: 倐
Rust:
let c = '\u{5010}';
println!("{}", c); // Output: 倐
Go:
char := '\u5010'
fmt.Printf("%c\n", char) // Output: 倐
CSS:
/* CSS content property */
.element::before {
content: "\005010"; /* 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%90
MD5:
bd6988a0b4a57b955ddd06048abada43
SHA1:
fd57af149a0f87d2771dd386797c8d326d8b0705
Base64:
5YCQ