C:
char c = '\u1103';
printf("%c\n", c); // Output: ᄃ
JavaScript:
const char = '\u1103';
console.log(char); // Output: ᄃ
Java:
char c = '\u1103';
System.out.println(c); // Output: ᄃ
JSON:
{"text": "\u1103"} // Value: ᄃ
Python:
char = '\u1103'
print(char) # Output: ᄃ
Perl:
my $char = "\x{1103}";
print $char; # Output: ᄃ
PHP:
$char = "\x{1103}";
echo $char; // Output: ᄃ
Ruby:
char = "\u{1103}"
puts char # Output: ᄃ
Rust:
let c = '\u{1103}';
println!("{}", c); // Output: ᄃ
Go:
char := '\u1103'
fmt.Printf("%c\n", char) // Output: ᄃ
CSS:
/* CSS content property */
.element::before {
content: "\001103"; /* 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%84%83
MD5:
fdd8e06a7cf463a875abb4218487e8ba
SHA1:
4be42238ae0244da25d0fc5817cb1c89c72f1150
Base64:
4YSD