C:
char c = '\u9131';
printf("%c\n", c); // Output: 鄱
JavaScript:
const char = '\u9131';
console.log(char); // Output: 鄱
Java:
char c = '\u9131';
System.out.println(c); // Output: 鄱
JSON:
{"text": "\u9131"} // Value: 鄱
Python:
char = '\u9131'
print(char) # Output: 鄱
Perl:
my $char = "\x{9131}";
print $char; # Output: 鄱
PHP:
$char = "\x{9131}";
echo $char; // Output: 鄱
Ruby:
char = "\u{9131}"
puts char # Output: 鄱
Rust:
let c = '\u{9131}';
println!("{}", c); // Output: 鄱
Go:
char := '\u9131'
fmt.Printf("%c\n", char) // Output: 鄱
CSS:
/* CSS content property */
.element::before {
content: "\009131"; /* 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%84%B1
MD5:
3d1ea3e4ff5a9819c94fb29c86b88cfb
SHA1:
2bf004f68de5538e059702a548cc636888e0a5f5
Base64:
6YSx