C:
char c = '\u604A';
printf("%c\n", c); // Output: 恊
JavaScript:
const char = '\u604A';
console.log(char); // Output: 恊
Java:
char c = '\u604A';
System.out.println(c); // Output: 恊
JSON:
{"text": "\u604A"} // Value: 恊
Python:
char = '\u604A'
print(char) # Output: 恊
Perl:
my $char = "\x{604A}";
print $char; # Output: 恊
PHP:
$char = "\x{604A}";
echo $char; // Output: 恊
Ruby:
char = "\u{604A}"
puts char # Output: 恊
Rust:
let c = '\u{604A}';
println!("{}", c); // Output: 恊
Go:
char := '\u604A'
fmt.Printf("%c\n", char) // Output: 恊
CSS:
/* CSS content property */
.element::before {
content: "\00604A"; /* 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=%E6%81%8A
MD5:
4395e0e648efca972084c32c6b8e9674
SHA1:
af81335349b946b69b3312fcd216b683d56db139
Base64:
5oGK