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