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