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