C:
char c = '\u9108';
printf("%c\n", c); // Output: 鄈
JavaScript:
const char = '\u9108';
console.log(char); // Output: 鄈
Java:
char c = '\u9108';
System.out.println(c); // Output: 鄈
JSON:
{"text": "\u9108"} // Value: 鄈
Python:
char = '\u9108'
print(char) # Output: 鄈
Perl:
my $char = "\x{9108}";
print $char; # Output: 鄈
PHP:
$char = "\x{9108}";
echo $char; // Output: 鄈
Ruby:
char = "\u{9108}"
puts char # Output: 鄈
Rust:
let c = '\u{9108}';
println!("{}", c); // Output: 鄈
Go:
char := '\u9108'
fmt.Printf("%c\n", char) // Output: 鄈
CSS:
/* CSS content property */
.element::before {
content: "\009108"; /* 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%88
MD5:
2f1baabbfa9b3e2b9da46ab58b4cfd75
SHA1:
9af604be3fe406e4d124903f8f98ae593c4100b8
Base64:
6YSI