C:
char c = '\u282A';
printf("%c\n", c); // Output: ⠪
JavaScript:
const char = '\u282A';
console.log(char); // Output: ⠪
Java:
char c = '\u282A';
System.out.println(c); // Output: ⠪
JSON:
{"text": "\u282A"} // Value: ⠪
Python:
char = '\u282A'
print(char) # Output: ⠪
Perl:
my $char = "\x{282A}";
print $char; # Output: ⠪
PHP:
$char = "\x{282A}";
echo $char; // Output: ⠪
Ruby:
char = "\u{282A}"
puts char # Output: ⠪
Rust:
let c = '\u{282A}';
println!("{}", c); // Output: ⠪
Go:
char := '\u282A'
fmt.Printf("%c\n", char) // Output: ⠪
CSS:
/* CSS content property */
.element::before {
content: "\00282A"; /* 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%A0%AA
MD5:
8001b7175e8048850a39c7619d6c5468
SHA1:
5066f10e3876a561f24933104903351ccc88eb06
Base64:
4qCq