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