C:
char c = '\u02EA';
printf("%c\n", c); // Output: ˪
JavaScript:
const char = '\u02EA';
console.log(char); // Output: ˪
Java:
char c = '\u02EA';
System.out.println(c); // Output: ˪
JSON:
{"text": "\u02EA"} // Value: ˪
Python:
char = '\u02EA'
print(char) # Output: ˪
Perl:
my $char = "\x{02EA}";
print $char; # Output: ˪
PHP:
$char = "\x{02EA}";
echo $char; // Output: ˪
Ruby:
char = "\u{02EA}"
puts char # Output: ˪
Rust:
let c = '\u{2EA}';
println!("{}", c); // Output: ˪
Go:
char := '\u02EA'
fmt.Printf("%c\n", char) // Output: ˪
CSS:
/* CSS content property */
.element::before {
content: "\0002EA"; /* 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=%CB%AA
MD5:
4e1bb4c742c48d4e5fe8bc0b6332e85b
SHA1:
de0ba3e0fecce28a456fa781af5e9d8d4b160c94
Base64:
y6o=