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