C:
char c = '\u5088';
printf("%c\n", c); // Output: 傈
JavaScript:
const char = '\u5088';
console.log(char); // Output: 傈
Java:
char c = '\u5088';
System.out.println(c); // Output: 傈
JSON:
{"text": "\u5088"} // Value: 傈
Python:
char = '\u5088'
print(char) # Output: 傈
Perl:
my $char = "\x{5088}";
print $char; # Output: 傈
PHP:
$char = "\x{5088}";
echo $char; // Output: 傈
Ruby:
char = "\u{5088}"
puts char # Output: 傈
Rust:
let c = '\u{5088}';
println!("{}", c); // Output: 傈
Go:
char := '\u5088'
fmt.Printf("%c\n", char) // Output: 傈
CSS:
/* CSS content property */
.element::before {
content: "\005088"; /* 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%82%88
MD5:
1688d4f03702149b320761cdaff68409
SHA1:
f3deadcd33cdc8c65e1bb2f68275effd0fa6a3fe
Base64:
5YKI