C:
char c = '\u2D1F';
printf("%c\n", c); // Output: ⴟ
JavaScript:
const char = '\u2D1F';
console.log(char); // Output: ⴟ
Java:
char c = '\u2D1F';
System.out.println(c); // Output: ⴟ
JSON:
{"text": "\u2D1F"} // Value: ⴟ
Python:
char = '\u2D1F'
print(char) # Output: ⴟ
Perl:
my $char = "\x{2D1F}";
print $char; # Output: ⴟ
PHP:
$char = "\x{2D1F}";
echo $char; // Output: ⴟ
Ruby:
char = "\u{2D1F}"
puts char # Output: ⴟ
Rust:
let c = '\u{2D1F}';
println!("{}", c); // Output: ⴟ
Go:
char := '\u2D1F'
fmt.Printf("%c\n", char) // Output: ⴟ
CSS:
/* CSS content property */
.element::before {
content: "\002D1F"; /* 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=%E2%B4%9F
MD5:
622cec8c75add28de4aac5a46ab806c1
SHA1:
c576826135111bd8fa84f3e4efff58a598ec44d4
Base64:
4rSf