C:
char c = '\u1C35';
printf("%c\n", c); // Output: ᰵ
JavaScript:
const char = '\u1C35';
console.log(char); // Output: ᰵ
Java:
char c = '\u1C35';
System.out.println(c); // Output: ᰵ
JSON:
{"text": "\u1C35"} // Value: ᰵ
Python:
char = '\u1C35'
print(char) # Output: ᰵ
Perl:
my $char = "\x{1C35}";
print $char; # Output: ᰵ
PHP:
$char = "\x{1C35}";
echo $char; // Output: ᰵ
Ruby:
char = "\u{1C35}"
puts char # Output: ᰵ
Rust:
let c = '\u{1C35}';
println!("{}", c); // Output: ᰵ
Go:
char := '\u1C35'
fmt.Printf("%c\n", char) // Output: ᰵ
CSS:
/* CSS content property */
.element::before {
content: "\001C35"; /* 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%B0%B5
MD5:
c04e143fc3b008b36da733aae45315ef
SHA1:
fc50b945e215570ce8e97d15b70f97a542e63d51
Base64:
4bC1