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