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