C:
char c = '\u4FD6';
printf("%c\n", c); // Output: 俖
JavaScript:
const char = '\u4FD6';
console.log(char); // Output: 俖
Java:
char c = '\u4FD6';
System.out.println(c); // Output: 俖
JSON:
{"text": "\u4FD6"} // Value: 俖
Python:
char = '\u4FD6'
print(char) # Output: 俖
Perl:
my $char = "\x{4FD6}";
print $char; # Output: 俖
PHP:
$char = "\x{4FD6}";
echo $char; // Output: 俖
Ruby:
char = "\u{4FD6}"
puts char # Output: 俖
Rust:
let c = '\u{4FD6}';
println!("{}", c); // Output: 俖
Go:
char := '\u4FD6'
fmt.Printf("%c\n", char) // Output: 俖
CSS:
/* CSS content property */
.element::before {
content: "\004FD6"; /* 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%96
MD5:
89952af8a42ddb80d9fb33fd4a7b0f26
SHA1:
f1f1f1e76a3baea16282506ec62ba1c06be40b1d
Base64:
5L+W