C:
char c = '\u1501';
printf("%c\n", c); // Output: ᔁ
JavaScript:
const char = '\u1501';
console.log(char); // Output: ᔁ
Java:
char c = '\u1501';
System.out.println(c); // Output: ᔁ
JSON:
{"text": "\u1501"} // Value: ᔁ
Python:
char = '\u1501'
print(char) # Output: ᔁ
Perl:
my $char = "\x{1501}";
print $char; # Output: ᔁ
PHP:
$char = "\x{1501}";
echo $char; // Output: ᔁ
Ruby:
char = "\u{1501}"
puts char # Output: ᔁ
Rust:
let c = '\u{1501}';
println!("{}", c); // Output: ᔁ
Go:
char := '\u1501'
fmt.Printf("%c\n", char) // Output: ᔁ
CSS:
/* CSS content property */
.element::before {
content: "\001501"; /* 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%81
MD5:
1e202d08ccf4586a0d1002613fc407e3
SHA1:
89b013340a9507f93df00f63c1febb679307ceb8
Base64:
4ZSB