C:
char c = '\u1572';
printf("%c\n", c); // Output: ᕲ
JavaScript:
const char = '\u1572';
console.log(char); // Output: ᕲ
Java:
char c = '\u1572';
System.out.println(c); // Output: ᕲ
JSON:
{"text": "\u1572"} // Value: ᕲ
Python:
char = '\u1572'
print(char) # Output: ᕲ
Perl:
my $char = "\x{1572}";
print $char; # Output: ᕲ
PHP:
$char = "\x{1572}";
echo $char; // Output: ᕲ
Ruby:
char = "\u{1572}"
puts char # Output: ᕲ
Rust:
let c = '\u{1572}';
println!("{}", c); // Output: ᕲ
Go:
char := '\u1572'
fmt.Printf("%c\n", char) // Output: ᕲ
CSS:
/* CSS content property */
.element::before {
content: "\001572"; /* 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%95%B2
MD5:
2d88885b92a55559a619b6ea359f938f
SHA1:
36341035211c46ff0b07f987a9f6d7833efdc3ab
Base64:
4ZWy