C:
char c = '\u8460';
printf("%c\n", c); // Output: 葠
JavaScript:
const char = '\u8460';
console.log(char); // Output: 葠
Java:
char c = '\u8460';
System.out.println(c); // Output: 葠
JSON:
{"text": "\u8460"} // Value: 葠
Python:
char = '\u8460'
print(char) # Output: 葠
Perl:
my $char = "\x{8460}";
print $char; # Output: 葠
PHP:
$char = "\x{8460}";
echo $char; // Output: 葠
Ruby:
char = "\u{8460}"
puts char # Output: 葠
Rust:
let c = '\u{8460}';
println!("{}", c); // Output: 葠
Go:
char := '\u8460'
fmt.Printf("%c\n", char) // Output: 葠
CSS:
/* CSS content property */
.element::before {
content: "\008460"; /* 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%A0
MD5:
b1337d416430043bc80d629a3f15bbff
SHA1:
521906f78166ed16a8cf9dae3ae8465e37c44802
Base64:
6JGg