C:
char c = '\u176F';
printf("%c\n", c); // Output: ᝯ
JavaScript:
const char = '\u176F';
console.log(char); // Output: ᝯ
Java:
char c = '\u176F';
System.out.println(c); // Output: ᝯ
JSON:
{"text": "\u176F"} // Value: ᝯ
Python:
char = '\u176F'
print(char) # Output: ᝯ
Perl:
my $char = "\x{176F}";
print $char; # Output: ᝯ
PHP:
$char = "\x{176F}";
echo $char; // Output: ᝯ
Ruby:
char = "\u{176F}"
puts char # Output: ᝯ
Rust:
let c = '\u{176F}';
println!("{}", c); // Output: ᝯ
Go:
char := '\u176F'
fmt.Printf("%c\n", char) // Output: ᝯ
CSS:
/* CSS content property */
.element::before {
content: "\00176F"; /* 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%9D%AF
MD5:
920fde5dea16cb1ada894438df8fe4f9
SHA1:
412f84295c3fab161672a46989a729b85a7f8463
Base64:
4Z2v