C:
char c = '\u155D';
printf("%c\n", c); // Output: ᕝ
JavaScript:
const char = '\u155D';
console.log(char); // Output: ᕝ
Java:
char c = '\u155D';
System.out.println(c); // Output: ᕝ
JSON:
{"text": "\u155D"} // Value: ᕝ
Python:
char = '\u155D'
print(char) # Output: ᕝ
Perl:
my $char = "\x{155D}";
print $char; # Output: ᕝ
PHP:
$char = "\x{155D}";
echo $char; // Output: ᕝ
Ruby:
char = "\u{155D}"
puts char # Output: ᕝ
Rust:
let c = '\u{155D}';
println!("{}", c); // Output: ᕝ
Go:
char := '\u155D'
fmt.Printf("%c\n", char) // Output: ᕝ
CSS:
/* CSS content property */
.element::before {
content: "\00155D"; /* 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=%E1%95%9D
MD5:
a4ff1a8dac3a5d06bbda3ece1a5ab8ff
SHA1:
6a4ec71f1a4d216e8bd6f843b958252b38df8457
Base64:
4ZWd