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