C:
char c = '\u3037';
printf("%c\n", c); // Output: 〷
JavaScript:
const char = '\u3037';
console.log(char); // Output: 〷
Java:
char c = '\u3037';
System.out.println(c); // Output: 〷
JSON:
{"text": "\u3037"} // Value: 〷
Python:
char = '\u3037'
print(char) # Output: 〷
Perl:
my $char = "\x{3037}";
print $char; # Output: 〷
PHP:
$char = "\x{3037}";
echo $char; // Output: 〷
Ruby:
char = "\u{3037}"
puts char # Output: 〷
Rust:
let c = '\u{3037}';
println!("{}", c); // Output: 〷
Go:
char := '\u3037'
fmt.Printf("%c\n", char) // Output: 〷
CSS:
/* CSS content property */
.element::before {
content: "\003037"; /* 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=%E3%80%B7
MD5:
344ebc0ab924a3b1834b1951f44a528a
SHA1:
6296a24a6664923a2e9840835773be61f2086291
Base64:
44C3