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