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