C:
char c = '\u13F3';
printf("%c\n", c); // Output: Ᏻ
JavaScript:
const char = '\u13F3';
console.log(char); // Output: Ᏻ
Java:
char c = '\u13F3';
System.out.println(c); // Output: Ᏻ
JSON:
{"text": "\u13F3"} // Value: Ᏻ
Python:
char = '\u13F3'
print(char) # Output: Ᏻ
Perl:
my $char = "\x{13F3}";
print $char; # Output: Ᏻ
PHP:
$char = "\x{13F3}";
echo $char; // Output: Ᏻ
Ruby:
char = "\u{13F3}"
puts char # Output: Ᏻ
Rust:
let c = '\u{13F3}';
println!("{}", c); // Output: Ᏻ
Go:
char := '\u13F3'
fmt.Printf("%c\n", char) // Output: Ᏻ
CSS:
/* CSS content property */
.element::before {
content: "\0013F3"; /* 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%8F%B3
MD5:
883e09d5ca2392e73d06893d72ce3869
SHA1:
54afeaea3102a65dc19bf1a28bead811319d1793
Base64:
4Y+z