C:
char c = '\u892F';
printf("%c\n", c); // Output: 褯
JavaScript:
const char = '\u892F';
console.log(char); // Output: 褯
Java:
char c = '\u892F';
System.out.println(c); // Output: 褯
JSON:
{"text": "\u892F"} // Value: 褯
Python:
char = '\u892F'
print(char) # Output: 褯
Perl:
my $char = "\x{892F}";
print $char; # Output: 褯
PHP:
$char = "\x{892F}";
echo $char; // Output: 褯
Ruby:
char = "\u{892F}"
puts char # Output: 褯
Rust:
let c = '\u{892F}';
println!("{}", c); // Output: 褯
Go:
char := '\u892F'
fmt.Printf("%c\n", char) // Output: 褯
CSS:
/* CSS content property */
.element::before {
content: "\00892F"; /* 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%AF
MD5:
84f792078ab64afdf5b7b5e775587508
SHA1:
112919f9667391ebd80c5e30858fc437805fad15
Base64:
6KSv