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