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