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