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