C:
char c = '\u8FAB';
printf("%c\n", c); // Output: 辫
JavaScript:
const char = '\u8FAB';
console.log(char); // Output: 辫
Java:
char c = '\u8FAB';
System.out.println(c); // Output: 辫
JSON:
{"text": "\u8FAB"} // Value: 辫
Python:
char = '\u8FAB'
print(char) # Output: 辫
Perl:
my $char = "\x{8FAB}";
print $char; # Output: 辫
PHP:
$char = "\x{8FAB}";
echo $char; // Output: 辫
Ruby:
char = "\u{8FAB}"
puts char # Output: 辫
Rust:
let c = '\u{8FAB}';
println!("{}", c); // Output: 辫
Go:
char := '\u8FAB'
fmt.Printf("%c\n", char) // Output: 辫
CSS:
/* CSS content property */
.element::before {
content: "\008FAB"; /* 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%BE%AB
MD5:
bd6d059cdb205cc51015f1c8363ec9d1
SHA1:
729de364f220e72c2277a3f4e5b85ed4f5c091ba
Base64:
6L6r