C:
char c = '\u2809';
printf("%c\n", c); // Output: ⠉
JavaScript:
const char = '\u2809';
console.log(char); // Output: ⠉
Java:
char c = '\u2809';
System.out.println(c); // Output: ⠉
JSON:
{"text": "\u2809"} // Value: ⠉
Python:
char = '\u2809'
print(char) # Output: ⠉
Perl:
my $char = "\x{2809}";
print $char; # Output: ⠉
PHP:
$char = "\x{2809}";
echo $char; // Output: ⠉
Ruby:
char = "\u{2809}"
puts char # Output: ⠉
Rust:
let c = '\u{2809}';
println!("{}", c); // Output: ⠉
Go:
char := '\u2809'
fmt.Printf("%c\n", char) // Output: ⠉
CSS:
/* CSS content property */
.element::before {
content: "\002809"; /* 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%89
MD5:
dad03cfcac0a25d1d28ed5da69290a80
SHA1:
c37251a03a4f27c6ff572e72302c00f2fd1f5caa
Base64:
4qCJ