C:
char c = '\u9083';
printf("%c\n", c); // Output: 邃
JavaScript:
const char = '\u9083';
console.log(char); // Output: 邃
Java:
char c = '\u9083';
System.out.println(c); // Output: 邃
JSON:
{"text": "\u9083"} // Value: 邃
Python:
char = '\u9083'
print(char) # Output: 邃
Perl:
my $char = "\x{9083}";
print $char; # Output: 邃
PHP:
$char = "\x{9083}";
echo $char; // Output: 邃
Ruby:
char = "\u{9083}"
puts char # Output: 邃
Rust:
let c = '\u{9083}';
println!("{}", c); // Output: 邃
Go:
char := '\u9083'
fmt.Printf("%c\n", char) // Output: 邃
CSS:
/* CSS content property */
.element::before {
content: "\009083"; /* 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%82%83
MD5:
20d611725dd8e7a7e4bf14dc71f5468f
SHA1:
91e5ed9a481b3ba432e18fa0add3ddc466d4f135
Base64:
6YKD