C:
char c = '\u280A';
printf("%c\n", c); // Output: ⠊
JavaScript:
const char = '\u280A';
console.log(char); // Output: ⠊
Java:
char c = '\u280A';
System.out.println(c); // Output: ⠊
JSON:
{"text": "\u280A"} // Value: ⠊
Python:
char = '\u280A'
print(char) # Output: ⠊
Perl:
my $char = "\x{280A}";
print $char; # Output: ⠊
PHP:
$char = "\x{280A}";
echo $char; // Output: ⠊
Ruby:
char = "\u{280A}"
puts char # Output: ⠊
Rust:
let c = '\u{280A}';
println!("{}", c); // Output: ⠊
Go:
char := '\u280A'
fmt.Printf("%c\n", char) // Output: ⠊
CSS:
/* CSS content property */
.element::before {
content: "\00280A"; /* 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%8A
MD5:
1783041538e982c27d6b95892004c990
SHA1:
2e8e09ab1a2bc7e8f3bb5214c58cf154531153c0
Base64:
4qCK