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