C:
char c = '\u189F';
printf("%c\n", c); // Output: ᢟ
JavaScript:
const char = '\u189F';
console.log(char); // Output: ᢟ
Java:
char c = '\u189F';
System.out.println(c); // Output: ᢟ
JSON:
{"text": "\u189F"} // Value: ᢟ
Python:
char = '\u189F'
print(char) # Output: ᢟ
Perl:
my $char = "\x{189F}";
print $char; # Output: ᢟ
PHP:
$char = "\x{189F}";
echo $char; // Output: ᢟ
Ruby:
char = "\u{189F}"
puts char # Output: ᢟ
Rust:
let c = '\u{189F}';
println!("{}", c); // Output: ᢟ
Go:
char := '\u189F'
fmt.Printf("%c\n", char) // Output: ᢟ
CSS:
/* CSS content property */
.element::before {
content: "\00189F"; /* 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%A2%9F
MD5:
cd4ad7c7ef35c5368d580792730964df
SHA1:
047f140767ea082b3e451d17c54f453fc344a6a5
Base64:
4aKf