C:
char c = '\u9383';
printf("%c\n", c); // Output: 鎃
JavaScript:
const char = '\u9383';
console.log(char); // Output: 鎃
Java:
char c = '\u9383';
System.out.println(c); // Output: 鎃
JSON:
{"text": "\u9383"} // Value: 鎃
Python:
char = '\u9383'
print(char) # Output: 鎃
Perl:
my $char = "\x{9383}";
print $char; # Output: 鎃
PHP:
$char = "\x{9383}";
echo $char; // Output: 鎃
Ruby:
char = "\u{9383}"
puts char # Output: 鎃
Rust:
let c = '\u{9383}';
println!("{}", c); // Output: 鎃
Go:
char := '\u9383'
fmt.Printf("%c\n", char) // Output: 鎃
CSS:
/* CSS content property */
.element::before {
content: "\009383"; /* 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%8E%83
MD5:
6bc445c135119147a950072697428843
SHA1:
b3b5ab684ba95045fa79a481dead9c2954e59f24
Base64:
6Y6D