C:
char c = '\u9028';
printf("%c\n", c); // Output: 逨
JavaScript:
const char = '\u9028';
console.log(char); // Output: 逨
Java:
char c = '\u9028';
System.out.println(c); // Output: 逨
JSON:
{"text": "\u9028"} // Value: 逨
Python:
char = '\u9028'
print(char) # Output: 逨
Perl:
my $char = "\x{9028}";
print $char; # Output: 逨
PHP:
$char = "\x{9028}";
echo $char; // Output: 逨
Ruby:
char = "\u{9028}"
puts char # Output: 逨
Rust:
let c = '\u{9028}';
println!("{}", c); // Output: 逨
Go:
char := '\u9028'
fmt.Printf("%c\n", char) // Output: 逨
CSS:
/* CSS content property */
.element::before {
content: "\009028"; /* 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=%E9%80%A8
MD5:
6a4822948d3a02fded3f5940b42f24ec
SHA1:
cca255203c3a1b85fb45e303aa8126a5a6c65218
Base64:
6YCo