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