C:
char c = '\u9DEC';
printf("%c\n", c); // Output: 鷬
JavaScript:
const char = '\u9DEC';
console.log(char); // Output: 鷬
Java:
char c = '\u9DEC';
System.out.println(c); // Output: 鷬
JSON:
{"text": "\u9DEC"} // Value: 鷬
Python:
char = '\u9DEC'
print(char) # Output: 鷬
Perl:
my $char = "\x{9DEC}";
print $char; # Output: 鷬
PHP:
$char = "\x{9DEC}";
echo $char; // Output: 鷬
Ruby:
char = "\u{9DEC}"
puts char # Output: 鷬
Rust:
let c = '\u{9DEC}';
println!("{}", c); // Output: 鷬
Go:
char := '\u9DEC'
fmt.Printf("%c\n", char) // Output: 鷬
CSS:
/* CSS content property */
.element::before {
content: "\009DEC"; /* 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=%E9%B7%AC
MD5:
a17d8a139bfcd40d1cd550a2983c1e29
SHA1:
227eedd746a6f4755144f89b04160cf832c461bc
Base64:
6bes