C:
char c = '\u7502';
printf("%c\n", c); // Output: 甂
JavaScript:
const char = '\u7502';
console.log(char); // Output: 甂
Java:
char c = '\u7502';
System.out.println(c); // Output: 甂
JSON:
{"text": "\u7502"} // Value: 甂
Python:
char = '\u7502'
print(char) # Output: 甂
Perl:
my $char = "\x{7502}";
print $char; # Output: 甂
PHP:
$char = "\x{7502}";
echo $char; // Output: 甂
Ruby:
char = "\u{7502}"
puts char # Output: 甂
Rust:
let c = '\u{7502}';
println!("{}", c); // Output: 甂
Go:
char := '\u7502'
fmt.Printf("%c\n", char) // Output: 甂
CSS:
/* CSS content property */
.element::before {
content: "\007502"; /* 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=%E7%94%82
MD5:
11590f086c0658bcee271868e446eff8
SHA1:
37225a79a050dcaa064891f38d7676a690de1690
Base64:
55SC