C:
char c = '\u9791';
printf("%c\n", c); // Output: 鞑
JavaScript:
const char = '\u9791';
console.log(char); // Output: 鞑
Java:
char c = '\u9791';
System.out.println(c); // Output: 鞑
JSON:
{"text": "\u9791"} // Value: 鞑
Python:
char = '\u9791'
print(char) # Output: 鞑
Perl:
my $char = "\x{9791}";
print $char; # Output: 鞑
PHP:
$char = "\x{9791}";
echo $char; // Output: 鞑
Ruby:
char = "\u{9791}"
puts char # Output: 鞑
Rust:
let c = '\u{9791}';
println!("{}", c); // Output: 鞑
Go:
char := '\u9791'
fmt.Printf("%c\n", char) // Output: 鞑
CSS:
/* CSS content property */
.element::before {
content: "\009791"; /* 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%9E%91
MD5:
efe516fe518eb4448aaaaf60acc35ea8
SHA1:
b6c9b55838bca12b6ac6b04c4cf32e75d1e9060a
Base64:
6Z6R