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