C:
char c = '\u3029';
printf("%c\n", c); // Output: 〩
JavaScript:
const char = '\u3029';
console.log(char); // Output: 〩
Java:
char c = '\u3029';
System.out.println(c); // Output: 〩
JSON:
{"text": "\u3029"} // Value: 〩
Python:
char = '\u3029'
print(char) # Output: 〩
Perl:
my $char = "\x{3029}";
print $char; # Output: 〩
PHP:
$char = "\x{3029}";
echo $char; // Output: 〩
Ruby:
char = "\u{3029}"
puts char # Output: 〩
Rust:
let c = '\u{3029}';
println!("{}", c); // Output: 〩
Go:
char := '\u3029'
fmt.Printf("%c\n", char) // Output: 〩
CSS:
/* CSS content property */
.element::before {
content: "\003029"; /* 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%A9
MD5:
066d0e1650426e728cab92af61eee754
SHA1:
33931e0f740c42bc5b30c7c19f6c391035c36fd5
Base64:
44Cp