C:
char c = '\u12DF';
printf("%c\n", c); // Output: ዟ
JavaScript:
const char = '\u12DF';
console.log(char); // Output: ዟ
Java:
char c = '\u12DF';
System.out.println(c); // Output: ዟ
JSON:
{"text": "\u12DF"} // Value: ዟ
Python:
char = '\u12DF'
print(char) # Output: ዟ
Perl:
my $char = "\x{12DF}";
print $char; # Output: ዟ
PHP:
$char = "\x{12DF}";
echo $char; // Output: ዟ
Ruby:
char = "\u{12DF}"
puts char # Output: ዟ
Rust:
let c = '\u{12DF}';
println!("{}", c); // Output: ዟ
Go:
char := '\u12DF'
fmt.Printf("%c\n", char) // Output: ዟ
CSS:
/* CSS content property */
.element::before {
content: "\0012DF"; /* 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%8B%9F
MD5:
4a1becd8f6d55274b44d4f997ffa0642
SHA1:
671ae3abca54c47da14b255d3601e0f23702dc62
Base64:
4Yuf