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