C:
char c = '\u8530';
printf("%c\n", c); // Output: 蔰
JavaScript:
const char = '\u8530';
console.log(char); // Output: 蔰
Java:
char c = '\u8530';
System.out.println(c); // Output: 蔰
JSON:
{"text": "\u8530"} // Value: 蔰
Python:
char = '\u8530'
print(char) # Output: 蔰
Perl:
my $char = "\x{8530}";
print $char; # Output: 蔰
PHP:
$char = "\x{8530}";
echo $char; // Output: 蔰
Ruby:
char = "\u{8530}"
puts char # Output: 蔰
Rust:
let c = '\u{8530}';
println!("{}", c); // Output: 蔰
Go:
char := '\u8530'
fmt.Printf("%c\n", char) // Output: 蔰
CSS:
/* CSS content property */
.element::before {
content: "\008530"; /* 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=%E8%94%B0
MD5:
ae59f064feed10d5366be61bf38ac904
SHA1:
53693c15ec69515ab52089038b46f2228e01aac3
Base64:
6JSw