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