C:
char c = '\u9088';
printf("%c\n", c); // Output: 邈
JavaScript:
const char = '\u9088';
console.log(char); // Output: 邈
Java:
char c = '\u9088';
System.out.println(c); // Output: 邈
JSON:
{"text": "\u9088"} // Value: 邈
Python:
char = '\u9088'
print(char) # Output: 邈
Perl:
my $char = "\x{9088}";
print $char; # Output: 邈
PHP:
$char = "\x{9088}";
echo $char; // Output: 邈
Ruby:
char = "\u{9088}"
puts char # Output: 邈
Rust:
let c = '\u{9088}';
println!("{}", c); // Output: 邈
Go:
char := '\u9088'
fmt.Printf("%c\n", char) // Output: 邈
CSS:
/* CSS content property */
.element::before {
content: "\009088"; /* 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%88
MD5:
307f7ed82ae5dfc921671660a0b0fc9f
SHA1:
1d138caff4693ef9471d4182cf1786530edb44a2
Base64:
6YKI