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