C:
char c = '\u1383';
printf("%c\n", c); // Output: ᎃ
JavaScript:
const char = '\u1383';
console.log(char); // Output: ᎃ
Java:
char c = '\u1383';
System.out.println(c); // Output: ᎃ
JSON:
{"text": "\u1383"} // Value: ᎃ
Python:
char = '\u1383'
print(char) # Output: ᎃ
Perl:
my $char = "\x{1383}";
print $char; # Output: ᎃ
PHP:
$char = "\x{1383}";
echo $char; // Output: ᎃ
Ruby:
char = "\u{1383}"
puts char # Output: ᎃ
Rust:
let c = '\u{1383}';
println!("{}", c); // Output: ᎃ
Go:
char := '\u1383'
fmt.Printf("%c\n", char) // Output: ᎃ
CSS:
/* CSS content property */
.element::before {
content: "\001383"; /* 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%8E%83
MD5:
45fb9fc89b75a626935d5388879d66a5
SHA1:
1d3cfffe6d6fddbd5adecddf676e20a9430b8f81
Base64:
4Y6D