C:
char c = '\u8568';
printf("%c\n", c); // Output: 蕨
JavaScript:
const char = '\u8568';
console.log(char); // Output: 蕨
Java:
char c = '\u8568';
System.out.println(c); // Output: 蕨
JSON:
{"text": "\u8568"} // Value: 蕨
Python:
char = '\u8568'
print(char) # Output: 蕨
Perl:
my $char = "\x{8568}";
print $char; # Output: 蕨
PHP:
$char = "\x{8568}";
echo $char; // Output: 蕨
Ruby:
char = "\u{8568}"
puts char # Output: 蕨
Rust:
let c = '\u{8568}';
println!("{}", c); // Output: 蕨
Go:
char := '\u8568'
fmt.Printf("%c\n", char) // Output: 蕨
CSS:
/* CSS content property */
.element::before {
content: "\008568"; /* 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%95%A8
MD5:
5eb4af8e2e8aedc5b7dc90f4cd168418
SHA1:
c1553040f3914b3ca9286f99ef784e156d76cdeb
Base64:
6JWo