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