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