C:
char c = '\u7882';
printf("%c\n", c); // Output: 碂
JavaScript:
const char = '\u7882';
console.log(char); // Output: 碂
Java:
char c = '\u7882';
System.out.println(c); // Output: 碂
JSON:
{"text": "\u7882"} // Value: 碂
Python:
char = '\u7882'
print(char) # Output: 碂
Perl:
my $char = "\x{7882}";
print $char; # Output: 碂
PHP:
$char = "\x{7882}";
echo $char; // Output: 碂
Ruby:
char = "\u{7882}"
puts char # Output: 碂
Rust:
let c = '\u{7882}';
println!("{}", c); // Output: 碂
Go:
char := '\u7882'
fmt.Printf("%c\n", char) // Output: 碂
CSS:
/* CSS content property */
.element::before {
content: "\007882"; /* 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%A2%82
MD5:
13f2c6ca85745294dd56ab5809e3546c
SHA1:
041ab59dcb69b3ae5322129e0edf681ddf896276
Base64:
56KC