C:
char c = '\u138F';
printf("%c\n", c); // Output: ᎏ
JavaScript:
const char = '\u138F';
console.log(char); // Output: ᎏ
Java:
char c = '\u138F';
System.out.println(c); // Output: ᎏ
JSON:
{"text": "\u138F"} // Value: ᎏ
Python:
char = '\u138F'
print(char) # Output: ᎏ
Perl:
my $char = "\x{138F}";
print $char; # Output: ᎏ
PHP:
$char = "\x{138F}";
echo $char; // Output: ᎏ
Ruby:
char = "\u{138F}"
puts char # Output: ᎏ
Rust:
let c = '\u{138F}';
println!("{}", c); // Output: ᎏ
Go:
char := '\u138F'
fmt.Printf("%c\n", char) // Output: ᎏ
CSS:
/* CSS content property */
.element::before {
content: "\00138F"; /* 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%8E%8F
MD5:
c7fec1853a7f124c3c06ebfa4a99c5ac
SHA1:
6411304274f859dc8f3f4fb972ec7e0f5452d7f0
Base64:
4Y6P