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