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