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