C:
char c = '\u1183';
printf("%c\n", c); // Output: ᆃ
JavaScript:
const char = '\u1183';
console.log(char); // Output: ᆃ
Java:
char c = '\u1183';
System.out.println(c); // Output: ᆃ
JSON:
{"text": "\u1183"} // Value: ᆃ
Python:
char = '\u1183'
print(char) # Output: ᆃ
Perl:
my $char = "\x{1183}";
print $char; # Output: ᆃ
PHP:
$char = "\x{1183}";
echo $char; // Output: ᆃ
Ruby:
char = "\u{1183}"
puts char # Output: ᆃ
Rust:
let c = '\u{1183}';
println!("{}", c); // Output: ᆃ
Go:
char := '\u1183'
fmt.Printf("%c\n", char) // Output: ᆃ
CSS:
/* CSS content property */
.element::before {
content: "\001183"; /* 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%86%83
MD5:
529476164244ece774c4cf0425d15da7
SHA1:
190daff6bd88ccf3540ca2806e0734455effa5dd
Base64:
4YaD