C:
char c = '\u2260';
printf("%c\n", c); // Output: ≠
JavaScript:
const char = '\u2260';
console.log(char); // Output: ≠
Java:
char c = '\u2260';
System.out.println(c); // Output: ≠
JSON:
{"text": "\u2260"} // Value: ≠
Python:
char = '\u2260'
print(char) # Output: ≠
Perl:
my $char = "\x{2260}";
print $char; # Output: ≠
PHP:
$char = "\x{2260}";
echo $char; // Output: ≠
Ruby:
char = "\u{2260}"
puts char # Output: ≠
Rust:
let c = '\u{2260}';
println!("{}", c); // Output: ≠
Go:
char := '\u2260'
fmt.Printf("%c\n", char) // Output: ≠
CSS:
/* CSS content property */
.element::before {
content: "\002260"; /* 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%89%A0
MD5:
3a48711e9401be3b05ee17167e850740
SHA1:
baa9ce702fb3a2dd356eedca637e086930b88be8
Base64:
4omg