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