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