C:
char c = '\u4FDF';
printf("%c\n", c); // Output: 俟
JavaScript:
const char = '\u4FDF';
console.log(char); // Output: 俟
Java:
char c = '\u4FDF';
System.out.println(c); // Output: 俟
JSON:
{"text": "\u4FDF"} // Value: 俟
Python:
char = '\u4FDF'
print(char) # Output: 俟
Perl:
my $char = "\x{4FDF}";
print $char; # Output: 俟
PHP:
$char = "\x{4FDF}";
echo $char; // Output: 俟
Ruby:
char = "\u{4FDF}"
puts char # Output: 俟
Rust:
let c = '\u{4FDF}';
println!("{}", c); // Output: 俟
Go:
char := '\u4FDF'
fmt.Printf("%c\n", char) // Output: 俟
CSS:
/* CSS content property */
.element::before {
content: "\004FDF"; /* 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=%E4%BF%9F
MD5:
d86182270be1eac1785547dc0e6f53e8
SHA1:
dd4eebd8466e55c57ce30e668d6b12d9d8b94c0d
Base64:
5L+f