C:
char c = '\u858A';
printf("%c\n", c); // Output: 薊
JavaScript:
const char = '\u858A';
console.log(char); // Output: 薊
Java:
char c = '\u858A';
System.out.println(c); // Output: 薊
JSON:
{"text": "\u858A"} // Value: 薊
Python:
char = '\u858A'
print(char) # Output: 薊
Perl:
my $char = "\x{858A}";
print $char; # Output: 薊
PHP:
$char = "\x{858A}";
echo $char; // Output: 薊
Ruby:
char = "\u{858A}"
puts char # Output: 薊
Rust:
let c = '\u{858A}';
println!("{}", c); // Output: 薊
Go:
char := '\u858A'
fmt.Printf("%c\n", char) // Output: 薊
CSS:
/* CSS content property */
.element::before {
content: "\00858A"; /* 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%96%8A
MD5:
713a3172d7986e20e4d1f4d43cc0c602
SHA1:
3d44bc5b368ad5ed0b30b31bfed83c3713275507
Base64:
6JaK