C:
char c = '\u1513';
printf("%c\n", c); // Output: ᔓ
JavaScript:
const char = '\u1513';
console.log(char); // Output: ᔓ
Java:
char c = '\u1513';
System.out.println(c); // Output: ᔓ
JSON:
{"text": "\u1513"} // Value: ᔓ
Python:
char = '\u1513'
print(char) # Output: ᔓ
Perl:
my $char = "\x{1513}";
print $char; # Output: ᔓ
PHP:
$char = "\x{1513}";
echo $char; // Output: ᔓ
Ruby:
char = "\u{1513}"
puts char # Output: ᔓ
Rust:
let c = '\u{1513}';
println!("{}", c); // Output: ᔓ
Go:
char := '\u1513'
fmt.Printf("%c\n", char) // Output: ᔓ
CSS:
/* CSS content property */
.element::before {
content: "\001513"; /* 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%94%93
MD5:
731a826de013ffb8b903ecdc391d4fb5
SHA1:
f8137686c7e3bde348f171e2dbaf9e0225eb9907
Base64:
4ZST