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