C:
char c = '\u9132';
printf("%c\n", c); // Output: 鄲
JavaScript:
const char = '\u9132';
console.log(char); // Output: 鄲
Java:
char c = '\u9132';
System.out.println(c); // Output: 鄲
JSON:
{"text": "\u9132"} // Value: 鄲
Python:
char = '\u9132'
print(char) # Output: 鄲
Perl:
my $char = "\x{9132}";
print $char; # Output: 鄲
PHP:
$char = "\x{9132}";
echo $char; // Output: 鄲
Ruby:
char = "\u{9132}"
puts char # Output: 鄲
Rust:
let c = '\u{9132}';
println!("{}", c); // Output: 鄲
Go:
char := '\u9132'
fmt.Printf("%c\n", char) // Output: 鄲
CSS:
/* CSS content property */
.element::before {
content: "\009132"; /* 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%B2
MD5:
dbab2577c7320aad9803bff21b7b518d
SHA1:
fc0c98f919fa92f3dfa05796f348831e815d8377
Base64:
6YSy