C:
char c = '\u214F';
printf("%c\n", c); // Output: ⅏
JavaScript:
const char = '\u214F';
console.log(char); // Output: ⅏
Java:
char c = '\u214F';
System.out.println(c); // Output: ⅏
JSON:
{"text": "\u214F"} // Value: ⅏
Python:
char = '\u214F'
print(char) # Output: ⅏
Perl:
my $char = "\x{214F}";
print $char; # Output: ⅏
PHP:
$char = "\x{214F}";
echo $char; // Output: ⅏
Ruby:
char = "\u{214F}"
puts char # Output: ⅏
Rust:
let c = '\u{214F}';
println!("{}", c); // Output: ⅏
Go:
char := '\u214F'
fmt.Printf("%c\n", char) // Output: ⅏
CSS:
/* CSS content property */
.element::before {
content: "\00214F"; /* 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%85%8F
MD5:
a84be052a1abea4a1f8ed60ccaf5bb93
SHA1:
920e865fe2a58593e31f1a50a4c4334a517a7a28
Base64:
4oWP