C:
char c = '\u2227';
printf("%c\n", c); // Output: ∧
JavaScript:
const char = '\u2227';
console.log(char); // Output: ∧
Java:
char c = '\u2227';
System.out.println(c); // Output: ∧
JSON:
{"text": "\u2227"} // Value: ∧
Python:
char = '\u2227'
print(char) # Output: ∧
Perl:
my $char = "\x{2227}";
print $char; # Output: ∧
PHP:
$char = "\x{2227}";
echo $char; // Output: ∧
Ruby:
char = "\u{2227}"
puts char # Output: ∧
Rust:
let c = '\u{2227}';
println!("{}", c); // Output: ∧
Go:
char := '\u2227'
fmt.Printf("%c\n", char) // Output: ∧
CSS:
/* CSS content property */
.element::before {
content: "\002227"; /* 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%88%A7
MD5:
847cfe24331d9fafd809ea3f473624a3
SHA1:
6c3030ddb139718668fa5960f64bb899333d7589
Base64:
4oin