C:
char c = '\u2255';
printf("%c\n", c); // Output: ≕
JavaScript:
const char = '\u2255';
console.log(char); // Output: ≕
Java:
char c = '\u2255';
System.out.println(c); // Output: ≕
JSON:
{"text": "\u2255"} // Value: ≕
Python:
char = '\u2255'
print(char) # Output: ≕
Perl:
my $char = "\x{2255}";
print $char; # Output: ≕
PHP:
$char = "\x{2255}";
echo $char; // Output: ≕
Ruby:
char = "\u{2255}"
puts char # Output: ≕
Rust:
let c = '\u{2255}';
println!("{}", c); // Output: ≕
Go:
char := '\u2255'
fmt.Printf("%c\n", char) // Output: ≕
CSS:
/* CSS content property */
.element::before {
content: "\002255"; /* 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%95
MD5:
9ca5d3d245e0ef396f7c36c6e5c00969
SHA1:
6812a3ccbec4dd535de76e17e1ec00cd45310439
Base64:
4omV