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