C:
char c = '\u3034';
printf("%c\n", c); // Output: 〴
JavaScript:
const char = '\u3034';
console.log(char); // Output: 〴
Java:
char c = '\u3034';
System.out.println(c); // Output: 〴
JSON:
{"text": "\u3034"} // Value: 〴
Python:
char = '\u3034'
print(char) # Output: 〴
Perl:
my $char = "\x{3034}";
print $char; # Output: 〴
PHP:
$char = "\x{3034}";
echo $char; // Output: 〴
Ruby:
char = "\u{3034}"
puts char # Output: 〴
Rust:
let c = '\u{3034}';
println!("{}", c); // Output: 〴
Go:
char := '\u3034'
fmt.Printf("%c\n", char) // Output: 〴
CSS:
/* CSS content property */
.element::before {
content: "\003034"; /* 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%B4
MD5:
e16e0b41ee5c592c4aae539857c8f4c6
SHA1:
44720e4737577d4012392a4ccda48e472d7d2c9e
Base64:
44C0