C:
char c = '\u939D';
printf("%c\n", c); // Output: 鎝
JavaScript:
const char = '\u939D';
console.log(char); // Output: 鎝
Java:
char c = '\u939D';
System.out.println(c); // Output: 鎝
JSON:
{"text": "\u939D"} // Value: 鎝
Python:
char = '\u939D'
print(char) # Output: 鎝
Perl:
my $char = "\x{939D}";
print $char; # Output: 鎝
PHP:
$char = "\x{939D}";
echo $char; // Output: 鎝
Ruby:
char = "\u{939D}"
puts char # Output: 鎝
Rust:
let c = '\u{939D}';
println!("{}", c); // Output: 鎝
Go:
char := '\u939D'
fmt.Printf("%c\n", char) // Output: 鎝
CSS:
/* CSS content property */
.element::before {
content: "\00939D"; /* 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%9D
MD5:
3a370c553b244546ddc459038e89f617
SHA1:
357a8626a48542b102d6d3d0f13c512d2355dd37
Base64:
6Y6d