C:
char c = '\u2DFE';
printf("%c\n", c); // Output: ⷾ
JavaScript:
const char = '\u2DFE';
console.log(char); // Output: ⷾ
Java:
char c = '\u2DFE';
System.out.println(c); // Output: ⷾ
JSON:
{"text": "\u2DFE"} // Value: ⷾ
Python:
char = '\u2DFE'
print(char) # Output: ⷾ
Perl:
my $char = "\x{2DFE}";
print $char; # Output: ⷾ
PHP:
$char = "\x{2DFE}";
echo $char; // Output: ⷾ
Ruby:
char = "\u{2DFE}"
puts char # Output: ⷾ
Rust:
let c = '\u{2DFE}';
println!("{}", c); // Output: ⷾ
Go:
char := '\u2DFE'
fmt.Printf("%c\n", char) // Output: ⷾ
CSS:
/* CSS content property */
.element::before {
content: "\002DFE"; /* 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%B7%BE
MD5:
01ece78e07b050e1a0f3ae2ec8e366c6
SHA1:
755cf8131d3f93f6b9858b81e33edb1370dc4ec3
Base64:
4re+