C:
char c = '\u2264';
printf("%c\n", c); // Output: ≤
JavaScript:
const char = '\u2264';
console.log(char); // Output: ≤
Java:
char c = '\u2264';
System.out.println(c); // Output: ≤
JSON:
{"text": "\u2264"} // Value: ≤
Python:
char = '\u2264'
print(char) # Output: ≤
Perl:
my $char = "\x{2264}";
print $char; # Output: ≤
PHP:
$char = "\x{2264}";
echo $char; // Output: ≤
Ruby:
char = "\u{2264}"
puts char # Output: ≤
Rust:
let c = '\u{2264}';
println!("{}", c); // Output: ≤
Go:
char := '\u2264'
fmt.Printf("%c\n", char) // Output: ≤
CSS:
/* CSS content property */
.element::before {
content: "\002264"; /* 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%A4
MD5:
d607ddcb86a5f9b9fba1db17aa88fccd
SHA1:
c8426723ced80bd1f3757bd9ddc6b45bdb1e39f1
Base64:
4omk