C:
char c = '\u148F';
printf("%c\n", c); // Output: ᒏ
JavaScript:
const char = '\u148F';
console.log(char); // Output: ᒏ
Java:
char c = '\u148F';
System.out.println(c); // Output: ᒏ
JSON:
{"text": "\u148F"} // Value: ᒏ
Python:
char = '\u148F'
print(char) # Output: ᒏ
Perl:
my $char = "\x{148F}";
print $char; # Output: ᒏ
PHP:
$char = "\x{148F}";
echo $char; // Output: ᒏ
Ruby:
char = "\u{148F}"
puts char # Output: ᒏ
Rust:
let c = '\u{148F}';
println!("{}", c); // Output: ᒏ
Go:
char := '\u148F'
fmt.Printf("%c\n", char) // Output: ᒏ
CSS:
/* CSS content property */
.element::before {
content: "\00148F"; /* 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%92%8F
MD5:
95d6a0867676ac7ce4ee1dce51d04905
SHA1:
416b1e5ca8dfaf824d0d0644769778b79ce7761f
Base64:
4ZKP