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