C:
char c = '\u846A';
printf("%c\n", c); // Output: 葪
JavaScript:
const char = '\u846A';
console.log(char); // Output: 葪
Java:
char c = '\u846A';
System.out.println(c); // Output: 葪
JSON:
{"text": "\u846A"} // Value: 葪
Python:
char = '\u846A'
print(char) # Output: 葪
Perl:
my $char = "\x{846A}";
print $char; # Output: 葪
PHP:
$char = "\x{846A}";
echo $char; // Output: 葪
Ruby:
char = "\u{846A}"
puts char # Output: 葪
Rust:
let c = '\u{846A}';
println!("{}", c); // Output: 葪
Go:
char := '\u846A'
fmt.Printf("%c\n", char) // Output: 葪
CSS:
/* CSS content property */
.element::before {
content: "\00846A"; /* 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%AA
MD5:
b4e86198c58353f0c58fcac947844443
SHA1:
861adc2473d82e46972a04f23021370d4352852b
Base64:
6JGq