C:
char c = '\u277E';
printf("%c\n", c); // Output: ❾
JavaScript:
const char = '\u277E';
console.log(char); // Output: ❾
Java:
char c = '\u277E';
System.out.println(c); // Output: ❾
JSON:
{"text": "\u277E"} // Value: ❾
Python:
char = '\u277E'
print(char) # Output: ❾
Perl:
my $char = "\x{277E}";
print $char; # Output: ❾
PHP:
$char = "\x{277E}";
echo $char; // Output: ❾
Ruby:
char = "\u{277E}"
puts char # Output: ❾
Rust:
let c = '\u{277E}';
println!("{}", c); // Output: ❾
Go:
char := '\u277E'
fmt.Printf("%c\n", char) // Output: ❾
CSS:
/* CSS content property */
.element::before {
content: "\00277E"; /* 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%9D%BE
MD5:
c7c159172d28c6551403023696e8dff7
SHA1:
f6b21b27d9fe956f0cec1dc74351d699f91cc410
Base64:
4p2+