C:
char c = '\u940B';
printf("%c\n", c); // Output: 鐋
JavaScript:
const char = '\u940B';
console.log(char); // Output: 鐋
Java:
char c = '\u940B';
System.out.println(c); // Output: 鐋
JSON:
{"text": "\u940B"} // Value: 鐋
Python:
char = '\u940B'
print(char) # Output: 鐋
Perl:
my $char = "\x{940B}";
print $char; # Output: 鐋
PHP:
$char = "\x{940B}";
echo $char; // Output: 鐋
Ruby:
char = "\u{940B}"
puts char # Output: 鐋
Rust:
let c = '\u{940B}';
println!("{}", c); // Output: 鐋
Go:
char := '\u940B'
fmt.Printf("%c\n", char) // Output: 鐋
CSS:
/* CSS content property */
.element::before {
content: "\00940B"; /* 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%90%8B
MD5:
43f7daf93e42dece853be8edb22ef942
SHA1:
c8da52df06a140c7c557ffc767f5fee3defef85b
Base64:
6ZCL