C:
char c = '\u2A83';
printf("%c\n", c); // Output: ⪃
JavaScript:
const char = '\u2A83';
console.log(char); // Output: ⪃
Java:
char c = '\u2A83';
System.out.println(c); // Output: ⪃
JSON:
{"text": "\u2A83"} // Value: ⪃
Python:
char = '\u2A83'
print(char) # Output: ⪃
Perl:
my $char = "\x{2A83}";
print $char; # Output: ⪃
PHP:
$char = "\x{2A83}";
echo $char; // Output: ⪃
Ruby:
char = "\u{2A83}"
puts char # Output: ⪃
Rust:
let c = '\u{2A83}';
println!("{}", c); // Output: ⪃
Go:
char := '\u2A83'
fmt.Printf("%c\n", char) // Output: ⪃
CSS:
/* CSS content property */
.element::before {
content: "\002A83"; /* 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%83
MD5:
c4fcebe277798984b3f3798fdb0b2342
SHA1:
869d914eb44bca99b3976f0864d7d9200cd9a19d
Base64:
4qqD