C:
char c = '\u2898';
printf("%c\n", c); // Output: ⢘
JavaScript:
const char = '\u2898';
console.log(char); // Output: ⢘
Java:
char c = '\u2898';
System.out.println(c); // Output: ⢘
JSON:
{"text": "\u2898"} // Value: ⢘
Python:
char = '\u2898'
print(char) # Output: ⢘
Perl:
my $char = "\x{2898}";
print $char; # Output: ⢘
PHP:
$char = "\x{2898}";
echo $char; // Output: ⢘
Ruby:
char = "\u{2898}"
puts char # Output: ⢘
Rust:
let c = '\u{2898}';
println!("{}", c); // Output: ⢘
Go:
char := '\u2898'
fmt.Printf("%c\n", char) // Output: ⢘
CSS:
/* CSS content property */
.element::before {
content: "\002898"; /* 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%A2%98
MD5:
5ca889f8c50d3aa2dfdbe168ac654305
SHA1:
af3734af212fe6a7291c01efca89d07d0e1722c6
Base64:
4qKY