C:
char c = '\u9092';
printf("%c\n", c); // Output: 邒
JavaScript:
const char = '\u9092';
console.log(char); // Output: 邒
Java:
char c = '\u9092';
System.out.println(c); // Output: 邒
JSON:
{"text": "\u9092"} // Value: 邒
Python:
char = '\u9092'
print(char) # Output: 邒
Perl:
my $char = "\x{9092}";
print $char; # Output: 邒
PHP:
$char = "\x{9092}";
echo $char; // Output: 邒
Ruby:
char = "\u{9092}"
puts char # Output: 邒
Rust:
let c = '\u{9092}';
println!("{}", c); // Output: 邒
Go:
char := '\u9092'
fmt.Printf("%c\n", char) // Output: 邒
CSS:
/* CSS content property */
.element::before {
content: "\009092"; /* 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%92
MD5:
bc5b1a6cd84898226849c822d8e9b74b
SHA1:
7fa34863f6a00cebf9c275dcb5ebd4171ede11f7
Base64:
6YKS