C:
char c = '\u9244';
printf("%c\n", c); // Output: 鉄
JavaScript:
const char = '\u9244';
console.log(char); // Output: 鉄
Java:
char c = '\u9244';
System.out.println(c); // Output: 鉄
JSON:
{"text": "\u9244"} // Value: 鉄
Python:
char = '\u9244'
print(char) # Output: 鉄
Perl:
my $char = "\x{9244}";
print $char; # Output: 鉄
PHP:
$char = "\x{9244}";
echo $char; // Output: 鉄
Ruby:
char = "\u{9244}"
puts char # Output: 鉄
Rust:
let c = '\u{9244}';
println!("{}", c); // Output: 鉄
Go:
char := '\u9244'
fmt.Printf("%c\n", char) // Output: 鉄
CSS:
/* CSS content property */
.element::before {
content: "\009244"; /* 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%84
MD5:
c7fa32bf1b5330dacf1877a24b7b25cb
SHA1:
51aaecf8f717ce72c56b67350b13c1d17ca45e4f
Base64:
6YmE