C:
char c = '\u9105';
printf("%c\n", c); // Output: 鄅
JavaScript:
const char = '\u9105';
console.log(char); // Output: 鄅
Java:
char c = '\u9105';
System.out.println(c); // Output: 鄅
JSON:
{"text": "\u9105"} // Value: 鄅
Python:
char = '\u9105'
print(char) # Output: 鄅
Perl:
my $char = "\x{9105}";
print $char; # Output: 鄅
PHP:
$char = "\x{9105}";
echo $char; // Output: 鄅
Ruby:
char = "\u{9105}"
puts char # Output: 鄅
Rust:
let c = '\u{9105}';
println!("{}", c); // Output: 鄅
Go:
char := '\u9105'
fmt.Printf("%c\n", char) // Output: 鄅
CSS:
/* CSS content property */
.element::before {
content: "\009105"; /* 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%84%85
MD5:
8d8f64dde9ceef346dd1de8cabe67267
SHA1:
410af6603ba19fb3337834756dbb56609d6cf493
Base64:
6YSF