C:
char c = '\u2248';
printf("%c\n", c); // Output: ≈
JavaScript:
const char = '\u2248';
console.log(char); // Output: ≈
Java:
char c = '\u2248';
System.out.println(c); // Output: ≈
JSON:
{"text": "\u2248"} // Value: ≈
Python:
char = '\u2248'
print(char) # Output: ≈
Perl:
my $char = "\x{2248}";
print $char; # Output: ≈
PHP:
$char = "\x{2248}";
echo $char; // Output: ≈
Ruby:
char = "\u{2248}"
puts char # Output: ≈
Rust:
let c = '\u{2248}';
println!("{}", c); // Output: ≈
Go:
char := '\u2248'
fmt.Printf("%c\n", char) // Output: ≈
CSS:
/* CSS content property */
.element::before {
content: "\002248"; /* 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%88
MD5:
953f2b15b42147df5182f2ef59b20ee4
SHA1:
ac5e882600dc60fcee0b57bd47d45894a14f0742
Base64:
4omI