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