C:
char c = '\u9270';
printf("%c\n", c); // Output: 鉰
JavaScript:
const char = '\u9270';
console.log(char); // Output: 鉰
Java:
char c = '\u9270';
System.out.println(c); // Output: 鉰
JSON:
{"text": "\u9270"} // Value: 鉰
Python:
char = '\u9270'
print(char) # Output: 鉰
Perl:
my $char = "\x{9270}";
print $char; # Output: 鉰
PHP:
$char = "\x{9270}";
echo $char; // Output: 鉰
Ruby:
char = "\u{9270}"
puts char # Output: 鉰
Rust:
let c = '\u{9270}';
println!("{}", c); // Output: 鉰
Go:
char := '\u9270'
fmt.Printf("%c\n", char) // Output: 鉰
CSS:
/* CSS content property */
.element::before {
content: "\009270"; /* 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%B0
MD5:
55c6ff3ba1b88100dd774718f50a8e09
SHA1:
0d1c4fd92b1ca9721fd5e39f1555e09329591160
Base64:
6Ymw