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