C:
char c = '\u5002';
printf("%c\n", c); // Output: 倂
JavaScript:
const char = '\u5002';
console.log(char); // Output: 倂
Java:
char c = '\u5002';
System.out.println(c); // Output: 倂
JSON:
{"text": "\u5002"} // Value: 倂
Python:
char = '\u5002'
print(char) # Output: 倂
Perl:
my $char = "\x{5002}";
print $char; # Output: 倂
PHP:
$char = "\x{5002}";
echo $char; // Output: 倂
Ruby:
char = "\u{5002}"
puts char # Output: 倂
Rust:
let c = '\u{5002}';
println!("{}", c); // Output: 倂
Go:
char := '\u5002'
fmt.Printf("%c\n", char) // Output: 倂
CSS:
/* CSS content property */
.element::before {
content: "\005002"; /* 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=%E5%80%82
MD5:
9e98ed0560d4eab689a873accd1ae330
SHA1:
2fc85594cfd768ce396c629f3a07a5d4e5d227b8
Base64:
5YCC