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