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