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