C:
char c = '\u229C';
printf("%c\n", c); // Output: ⊜
JavaScript:
const char = '\u229C';
console.log(char); // Output: ⊜
Java:
char c = '\u229C';
System.out.println(c); // Output: ⊜
JSON:
{"text": "\u229C"} // Value: ⊜
Python:
char = '\u229C'
print(char) # Output: ⊜
Perl:
my $char = "\x{229C}";
print $char; # Output: ⊜
PHP:
$char = "\x{229C}";
echo $char; // Output: ⊜
Ruby:
char = "\u{229C}"
puts char # Output: ⊜
Rust:
let c = '\u{229C}';
println!("{}", c); // Output: ⊜
Go:
char := '\u229C'
fmt.Printf("%c\n", char) // Output: ⊜
CSS:
/* CSS content property */
.element::before {
content: "\00229C"; /* 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%9C
MD5:
d7dedc6338733beca0986777247dfe73
SHA1:
4935d98b16ef1c0488f453468dbe4de263549c17
Base64:
4oqc