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