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