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