C:
char c = '\u2A8D';
printf("%c\n", c); // Output: ⪍
JavaScript:
const char = '\u2A8D';
console.log(char); // Output: ⪍
Java:
char c = '\u2A8D';
System.out.println(c); // Output: ⪍
JSON:
{"text": "\u2A8D"} // Value: ⪍
Python:
char = '\u2A8D'
print(char) # Output: ⪍
Perl:
my $char = "\x{2A8D}";
print $char; # Output: ⪍
PHP:
$char = "\x{2A8D}";
echo $char; // Output: ⪍
Ruby:
char = "\u{2A8D}"
puts char # Output: ⪍
Rust:
let c = '\u{2A8D}';
println!("{}", c); // Output: ⪍
Go:
char := '\u2A8D'
fmt.Printf("%c\n", char) // Output: ⪍
CSS:
/* CSS content property */
.element::before {
content: "\002A8D"; /* 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=%E2%AA%8D
MD5:
b850030ad434449978e366c640e5c1ec
SHA1:
cd3cd060997f09fc91b22dbc2e9c00ccb900e91f
Base64:
4qqN