C:
char c = '\u9085';
printf("%c\n", c); // Output: 邅
JavaScript:
const char = '\u9085';
console.log(char); // Output: 邅
Java:
char c = '\u9085';
System.out.println(c); // Output: 邅
JSON:
{"text": "\u9085"} // Value: 邅
Python:
char = '\u9085'
print(char) # Output: 邅
Perl:
my $char = "\x{9085}";
print $char; # Output: 邅
PHP:
$char = "\x{9085}";
echo $char; // Output: 邅
Ruby:
char = "\u{9085}"
puts char # Output: 邅
Rust:
let c = '\u{9085}';
println!("{}", c); // Output: 邅
Go:
char := '\u9085'
fmt.Printf("%c\n", char) // Output: 邅
CSS:
/* CSS content property */
.element::before {
content: "\009085"; /* 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%85
MD5:
25c09dac1caf136d07bbcd7b9c18cb37
SHA1:
cf5132ad2642ccaeca48154b9b4dbb3c6217cc9e
Base64:
6YKF