C:
char c = '\u22D1';
printf("%c\n", c); // Output: ⋑
JavaScript:
const char = '\u22D1';
console.log(char); // Output: ⋑
Java:
char c = '\u22D1';
System.out.println(c); // Output: ⋑
JSON:
{"text": "\u22D1"} // Value: ⋑
Python:
char = '\u22D1'
print(char) # Output: ⋑
Perl:
my $char = "\x{22D1}";
print $char; # Output: ⋑
PHP:
$char = "\x{22D1}";
echo $char; // Output: ⋑
Ruby:
char = "\u{22D1}"
puts char # Output: ⋑
Rust:
let c = '\u{22D1}';
println!("{}", c); // Output: ⋑
Go:
char := '\u22D1'
fmt.Printf("%c\n", char) // Output: ⋑
CSS:
/* CSS content property */
.element::before {
content: "\0022D1"; /* 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%8B%91
MD5:
70463196079989995a9afd1187d58649
SHA1:
2d880a928fb4bb6778b59202f5c4bfccc24baa03
Base64:
4ouR