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