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