C:
char c = '\u2EAE';
printf("%c\n", c); // Output: ⺮
JavaScript:
const char = '\u2EAE';
console.log(char); // Output: ⺮
Java:
char c = '\u2EAE';
System.out.println(c); // Output: ⺮
JSON:
{"text": "\u2EAE"} // Value: ⺮
Python:
char = '\u2EAE'
print(char) # Output: ⺮
Perl:
my $char = "\x{2EAE}";
print $char; # Output: ⺮
PHP:
$char = "\x{2EAE}";
echo $char; // Output: ⺮
Ruby:
char = "\u{2EAE}"
puts char # Output: ⺮
Rust:
let c = '\u{2EAE}';
println!("{}", c); // Output: ⺮
Go:
char := '\u2EAE'
fmt.Printf("%c\n", char) // Output: ⺮
CSS:
/* CSS content property */
.element::before {
content: "\002EAE"; /* 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%BA%AE
MD5:
335f23a90458de7696ce47e7dc7624b2
SHA1:
961da69dec520620e102f4497e3f68849d53b846
Base64:
4rqu