C:
char c = '\u2D3F';
printf("%c\n", c); // Output: ⴿ
JavaScript:
const char = '\u2D3F';
console.log(char); // Output: ⴿ
Java:
char c = '\u2D3F';
System.out.println(c); // Output: ⴿ
JSON:
{"text": "\u2D3F"} // Value: ⴿ
Python:
char = '\u2D3F'
print(char) # Output: ⴿ
Perl:
my $char = "\x{2D3F}";
print $char; # Output: ⴿ
PHP:
$char = "\x{2D3F}";
echo $char; // Output: ⴿ
Ruby:
char = "\u{2D3F}"
puts char # Output: ⴿ
Rust:
let c = '\u{2D3F}';
println!("{}", c); // Output: ⴿ
Go:
char := '\u2D3F'
fmt.Printf("%c\n", char) // Output: ⴿ
CSS:
/* CSS content property */
.element::before {
content: "\002D3F"; /* 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%BF
MD5:
1373965593769906e73ecf766435cef0
SHA1:
69b599ad996341cf0620a8159501cb5ed869aeaf
Base64:
4rS/