C:
char c = '\u5061';
printf("%c\n", c); // Output: 偡
JavaScript:
const char = '\u5061';
console.log(char); // Output: 偡
Java:
char c = '\u5061';
System.out.println(c); // Output: 偡
JSON:
{"text": "\u5061"} // Value: 偡
Python:
char = '\u5061'
print(char) # Output: 偡
Perl:
my $char = "\x{5061}";
print $char; # Output: 偡
PHP:
$char = "\x{5061}";
echo $char; // Output: 偡
Ruby:
char = "\u{5061}"
puts char # Output: 偡
Rust:
let c = '\u{5061}';
println!("{}", c); // Output: 偡
Go:
char := '\u5061'
fmt.Printf("%c\n", char) // Output: 偡
CSS:
/* CSS content property */
.element::before {
content: "\005061"; /* 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%81%A1
MD5:
fd2f5bde60ac062ad3ce027cd533f8c3
SHA1:
42973935b33a8086e96f82d7de64387cb6397167
Base64:
5YGh