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