C:
char c = '\u1913';
printf("%c\n", c); // Output: ᤓ
JavaScript:
const char = '\u1913';
console.log(char); // Output: ᤓ
Java:
char c = '\u1913';
System.out.println(c); // Output: ᤓ
JSON:
{"text": "\u1913"} // Value: ᤓ
Python:
char = '\u1913'
print(char) # Output: ᤓ
Perl:
my $char = "\x{1913}";
print $char; # Output: ᤓ
PHP:
$char = "\x{1913}";
echo $char; // Output: ᤓ
Ruby:
char = "\u{1913}"
puts char # Output: ᤓ
Rust:
let c = '\u{1913}';
println!("{}", c); // Output: ᤓ
Go:
char := '\u1913'
fmt.Printf("%c\n", char) // Output: ᤓ
CSS:
/* CSS content property */
.element::before {
content: "\001913"; /* 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%A4%93
MD5:
290672e4912b980f1fb32e112ec4d275
SHA1:
0adbb9760fbc1e0338e2dd4fedb719d6fdfa8aea
Base64:
4aST