C:
char c = '\u1633';
printf("%c\n", c); // Output: ᘳ
JavaScript:
const char = '\u1633';
console.log(char); // Output: ᘳ
Java:
char c = '\u1633';
System.out.println(c); // Output: ᘳ
JSON:
{"text": "\u1633"} // Value: ᘳ
Python:
char = '\u1633'
print(char) # Output: ᘳ
Perl:
my $char = "\x{1633}";
print $char; # Output: ᘳ
PHP:
$char = "\x{1633}";
echo $char; // Output: ᘳ
Ruby:
char = "\u{1633}"
puts char # Output: ᘳ
Rust:
let c = '\u{1633}';
println!("{}", c); // Output: ᘳ
Go:
char := '\u1633'
fmt.Printf("%c\n", char) // Output: ᘳ
CSS:
/* CSS content property */
.element::before {
content: "\001633"; /* 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%B3
MD5:
0f4b045981dc4e82d2297e1b2932ba62
SHA1:
345d7f473e8764ce738b6ddcaedbd69a9c45da71
Base64:
4Ziz