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