C:
char c = '\u2814';
printf("%c\n", c); // Output: ⠔
JavaScript:
const char = '\u2814';
console.log(char); // Output: ⠔
Java:
char c = '\u2814';
System.out.println(c); // Output: ⠔
JSON:
{"text": "\u2814"} // Value: ⠔
Python:
char = '\u2814'
print(char) # Output: ⠔
Perl:
my $char = "\x{2814}";
print $char; # Output: ⠔
PHP:
$char = "\x{2814}";
echo $char; // Output: ⠔
Ruby:
char = "\u{2814}"
puts char # Output: ⠔
Rust:
let c = '\u{2814}';
println!("{}", c); // Output: ⠔
Go:
char := '\u2814'
fmt.Printf("%c\n", char) // Output: ⠔
CSS:
/* CSS content property */
.element::before {
content: "\002814"; /* 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%94
MD5:
62467fd111961e37e1b78a8a4c82558b
SHA1:
97c2f4c148ed2be80255b8140972a1f2197f9f24
Base64:
4qCU