C:
char c = '\u8930';
printf("%c\n", c); // Output: 褰
JavaScript:
const char = '\u8930';
console.log(char); // Output: 褰
Java:
char c = '\u8930';
System.out.println(c); // Output: 褰
JSON:
{"text": "\u8930"} // Value: 褰
Python:
char = '\u8930'
print(char) # Output: 褰
Perl:
my $char = "\x{8930}";
print $char; # Output: 褰
PHP:
$char = "\x{8930}";
echo $char; // Output: 褰
Ruby:
char = "\u{8930}"
puts char # Output: 褰
Rust:
let c = '\u{8930}';
println!("{}", c); // Output: 褰
Go:
char := '\u8930'
fmt.Printf("%c\n", char) // Output: 褰
CSS:
/* CSS content property */
.element::before {
content: "\008930"; /* 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%B0
MD5:
a2d24eea0e31e672e7de1cd78194bc4e
SHA1:
22c3483047773efbd9e2b35be094fc4fa0d4436e
Base64:
6KSw