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