C:
char c = '\u8923';
printf("%c\n", c); // Output: 褣
JavaScript:
const char = '\u8923';
console.log(char); // Output: 褣
Java:
char c = '\u8923';
System.out.println(c); // Output: 褣
JSON:
{"text": "\u8923"} // Value: 褣
Python:
char = '\u8923'
print(char) # Output: 褣
Perl:
my $char = "\x{8923}";
print $char; # Output: 褣
PHP:
$char = "\x{8923}";
echo $char; // Output: 褣
Ruby:
char = "\u{8923}"
puts char # Output: 褣
Rust:
let c = '\u{8923}';
println!("{}", c); // Output: 褣
Go:
char := '\u8923'
fmt.Printf("%c\n", char) // Output: 褣
CSS:
/* CSS content property */
.element::before {
content: "\008923"; /* 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=%E8%A4%A3
MD5:
92d3f55f1a5e78f416ca8a73834ea5af
SHA1:
3f762fb2971bb11f41030ee653afd9f52e225568
Base64:
6KSj