C:
char c = '\u5142';
printf("%c\n", c); // Output: 兂
JavaScript:
const char = '\u5142';
console.log(char); // Output: 兂
Java:
char c = '\u5142';
System.out.println(c); // Output: 兂
JSON:
{"text": "\u5142"} // Value: 兂
Python:
char = '\u5142'
print(char) # Output: 兂
Perl:
my $char = "\x{5142}";
print $char; # Output: 兂
PHP:
$char = "\x{5142}";
echo $char; // Output: 兂
Ruby:
char = "\u{5142}"
puts char # Output: 兂
Rust:
let c = '\u{5142}';
println!("{}", c); // Output: 兂
Go:
char := '\u5142'
fmt.Printf("%c\n", char) // Output: 兂
CSS:
/* CSS content property */
.element::before {
content: "\005142"; /* 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%85%82
MD5:
38e3217b4b2909db86859bf998b9f58c
SHA1:
8be33d0f3991fa34abda1df496f3db1e0946f426
Base64:
5YWC