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