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