C:
char c = '\u2273';
printf("%c\n", c); // Output: ≳
JavaScript:
const char = '\u2273';
console.log(char); // Output: ≳
Java:
char c = '\u2273';
System.out.println(c); // Output: ≳
JSON:
{"text": "\u2273"} // Value: ≳
Python:
char = '\u2273'
print(char) # Output: ≳
Perl:
my $char = "\x{2273}";
print $char; # Output: ≳
PHP:
$char = "\x{2273}";
echo $char; // Output: ≳
Ruby:
char = "\u{2273}"
puts char # Output: ≳
Rust:
let c = '\u{2273}';
println!("{}", c); // Output: ≳
Go:
char := '\u2273'
fmt.Printf("%c\n", char) // Output: ≳
CSS:
/* CSS content property */
.element::before {
content: "\002273"; /* 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%B3
MD5:
8548bdf2a44304115660cc8ba833e708
SHA1:
4724df796409556c130f95c1b1ac3747cf73e159
Base64:
4omz