C:
char c = '\u289F';
printf("%c\n", c); // Output: ⢟
JavaScript:
const char = '\u289F';
console.log(char); // Output: ⢟
Java:
char c = '\u289F';
System.out.println(c); // Output: ⢟
JSON:
{"text": "\u289F"} // Value: ⢟
Python:
char = '\u289F'
print(char) # Output: ⢟
Perl:
my $char = "\x{289F}";
print $char; # Output: ⢟
PHP:
$char = "\x{289F}";
echo $char; // Output: ⢟
Ruby:
char = "\u{289F}"
puts char # Output: ⢟
Rust:
let c = '\u{289F}';
println!("{}", c); // Output: ⢟
Go:
char := '\u289F'
fmt.Printf("%c\n", char) // Output: ⢟
CSS:
/* CSS content property */
.element::before {
content: "\00289F"; /* 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%9F
MD5:
59784e2b5292b3507c3f9b7a8fceccd5
SHA1:
640a1c72ab6db87966959fd784af879a4d9dcd0e
Base64:
4qKf