C:
char c = '\u2254';
printf("%c\n", c); // Output: ≔
JavaScript:
const char = '\u2254';
console.log(char); // Output: ≔
Java:
char c = '\u2254';
System.out.println(c); // Output: ≔
JSON:
{"text": "\u2254"} // Value: ≔
Python:
char = '\u2254'
print(char) # Output: ≔
Perl:
my $char = "\x{2254}";
print $char; # Output: ≔
PHP:
$char = "\x{2254}";
echo $char; // Output: ≔
Ruby:
char = "\u{2254}"
puts char # Output: ≔
Rust:
let c = '\u{2254}';
println!("{}", c); // Output: ≔
Go:
char := '\u2254'
fmt.Printf("%c\n", char) // Output: ≔
CSS:
/* CSS content property */
.element::before {
content: "\002254"; /* 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%94
MD5:
081bcf2316054e1de9989503df8c3e2f
SHA1:
be10dc3f6064c2cf0fd3e59e9ff40aa2bf19a76e
Base64:
4omU