C:
char c = '\u9431';
printf("%c\n", c); // Output: 鐱
JavaScript:
const char = '\u9431';
console.log(char); // Output: 鐱
Java:
char c = '\u9431';
System.out.println(c); // Output: 鐱
JSON:
{"text": "\u9431"} // Value: 鐱
Python:
char = '\u9431'
print(char) # Output: 鐱
Perl:
my $char = "\x{9431}";
print $char; # Output: 鐱
PHP:
$char = "\x{9431}";
echo $char; // Output: 鐱
Ruby:
char = "\u{9431}"
puts char # Output: 鐱
Rust:
let c = '\u{9431}';
println!("{}", c); // Output: 鐱
Go:
char := '\u9431'
fmt.Printf("%c\n", char) // Output: 鐱
CSS:
/* CSS content property */
.element::before {
content: "\009431"; /* 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%90%B1
MD5:
73d41c3a32fe66f9deefbf01e9c53d11
SHA1:
213469d362ba605c537ec4378482b84be6e0f10a
Base64:
6ZCx