C:
char c = '\u2EC0';
printf("%c\n", c); // Output: ⻀
JavaScript:
const char = '\u2EC0';
console.log(char); // Output: ⻀
Java:
char c = '\u2EC0';
System.out.println(c); // Output: ⻀
JSON:
{"text": "\u2EC0"} // Value: ⻀
Python:
char = '\u2EC0'
print(char) # Output: ⻀
Perl:
my $char = "\x{2EC0}";
print $char; # Output: ⻀
PHP:
$char = "\x{2EC0}";
echo $char; // Output: ⻀
Ruby:
char = "\u{2EC0}"
puts char # Output: ⻀
Rust:
let c = '\u{2EC0}';
println!("{}", c); // Output: ⻀
Go:
char := '\u2EC0'
fmt.Printf("%c\n", char) // Output: ⻀
CSS:
/* CSS content property */
.element::before {
content: "\002EC0"; /* 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%BB%80
MD5:
36deba0c60c89829fe8f8364717f5c68
SHA1:
8b2c55ac5c3a4c4f0314752c62b5ef10ce4ffdd0
Base64:
4ruA