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