C:
char c = '\u8466';
printf("%c\n", c); // Output: 葦
JavaScript:
const char = '\u8466';
console.log(char); // Output: 葦
Java:
char c = '\u8466';
System.out.println(c); // Output: 葦
JSON:
{"text": "\u8466"} // Value: 葦
Python:
char = '\u8466'
print(char) # Output: 葦
Perl:
my $char = "\x{8466}";
print $char; # Output: 葦
PHP:
$char = "\x{8466}";
echo $char; // Output: 葦
Ruby:
char = "\u{8466}"
puts char # Output: 葦
Rust:
let c = '\u{8466}';
println!("{}", c); // Output: 葦
Go:
char := '\u8466'
fmt.Printf("%c\n", char) // Output: 葦
CSS:
/* CSS content property */
.element::before {
content: "\008466"; /* 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%91%A6
MD5:
b74fa89eeb20f1b9af747e14d20c669d
SHA1:
cb169cb218072dcd250723a1b54f4ba10d2b8071
Base64:
6JGm