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