C:
char c = '\u22CC';
printf("%c\n", c); // Output: ⋌
JavaScript:
const char = '\u22CC';
console.log(char); // Output: ⋌
Java:
char c = '\u22CC';
System.out.println(c); // Output: ⋌
JSON:
{"text": "\u22CC"} // Value: ⋌
Python:
char = '\u22CC'
print(char) # Output: ⋌
Perl:
my $char = "\x{22CC}";
print $char; # Output: ⋌
PHP:
$char = "\x{22CC}";
echo $char; // Output: ⋌
Ruby:
char = "\u{22CC}"
puts char # Output: ⋌
Rust:
let c = '\u{22CC}';
println!("{}", c); // Output: ⋌
Go:
char := '\u22CC'
fmt.Printf("%c\n", char) // Output: ⋌
CSS:
/* CSS content property */
.element::before {
content: "\0022CC"; /* 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%8B%8C
MD5:
6b156824527d61326c9643d1347ae2a8
SHA1:
f39fc8c951278c4b2cb3efcb80093ad1b6add73f
Base64:
4ouM