C:
char c = '\u1119';
printf("%c\n", c); // Output: ᄙ
JavaScript:
const char = '\u1119';
console.log(char); // Output: ᄙ
Java:
char c = '\u1119';
System.out.println(c); // Output: ᄙ
JSON:
{"text": "\u1119"} // Value: ᄙ
Python:
char = '\u1119'
print(char) # Output: ᄙ
Perl:
my $char = "\x{1119}";
print $char; # Output: ᄙ
PHP:
$char = "\x{1119}";
echo $char; // Output: ᄙ
Ruby:
char = "\u{1119}"
puts char # Output: ᄙ
Rust:
let c = '\u{1119}';
println!("{}", c); // Output: ᄙ
Go:
char := '\u1119'
fmt.Printf("%c\n", char) // Output: ᄙ
CSS:
/* CSS content property */
.element::before {
content: "\001119"; /* 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%99
MD5:
0d624ab42601c250897c10625bed5cbe
SHA1:
7f73da2d6fa8158631c252811e589b08d3a984e8
Base64:
4YSZ