C:
char c = '\u1530';
printf("%c\n", c); // Output: ᔰ
JavaScript:
const char = '\u1530';
console.log(char); // Output: ᔰ
Java:
char c = '\u1530';
System.out.println(c); // Output: ᔰ
JSON:
{"text": "\u1530"} // Value: ᔰ
Python:
char = '\u1530'
print(char) # Output: ᔰ
Perl:
my $char = "\x{1530}";
print $char; # Output: ᔰ
PHP:
$char = "\x{1530}";
echo $char; // Output: ᔰ
Ruby:
char = "\u{1530}"
puts char # Output: ᔰ
Rust:
let c = '\u{1530}';
println!("{}", c); // Output: ᔰ
Go:
char := '\u1530'
fmt.Printf("%c\n", char) // Output: ᔰ
CSS:
/* CSS content property */
.element::before {
content: "\001530"; /* 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%B0
MD5:
c1df71be7d77da8a0fe6d194fa021256
SHA1:
80ec0498e6f238204b88ac0078d967685395843f
Base64:
4ZSw