C:
char c = '\u5C26';
printf("%c\n", c); // Output: 尦
JavaScript:
const char = '\u5C26';
console.log(char); // Output: 尦
Java:
char c = '\u5C26';
System.out.println(c); // Output: 尦
JSON:
{"text": "\u5C26"} // Value: 尦
Python:
char = '\u5C26'
print(char) # Output: 尦
Perl:
my $char = "\x{5C26}";
print $char; # Output: 尦
PHP:
$char = "\x{5C26}";
echo $char; // Output: 尦
Ruby:
char = "\u{5C26}"
puts char # Output: 尦
Rust:
let c = '\u{5C26}';
println!("{}", c); // Output: 尦
Go:
char := '\u5C26'
fmt.Printf("%c\n", char) // Output: 尦
CSS:
/* CSS content property */
.element::before {
content: "\005C26"; /* 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%B0%A6
MD5:
a5dae939eca4deded71b8c8e727568d0
SHA1:
42a3f9da0e3682b73b80253f70fbfd688dfc1ea9
Base64:
5bCm