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