C:
char c = '\u74DA';
printf("%c\n", c); // Output: 瓚
JavaScript:
const char = '\u74DA';
console.log(char); // Output: 瓚
Java:
char c = '\u74DA';
System.out.println(c); // Output: 瓚
JSON:
{"text": "\u74DA"} // Value: 瓚
Python:
char = '\u74DA'
print(char) # Output: 瓚
Perl:
my $char = "\x{74DA}";
print $char; # Output: 瓚
PHP:
$char = "\x{74DA}";
echo $char; // Output: 瓚
Ruby:
char = "\u{74DA}"
puts char # Output: 瓚
Rust:
let c = '\u{74DA}';
println!("{}", c); // Output: 瓚
Go:
char := '\u74DA'
fmt.Printf("%c\n", char) // Output: 瓚
CSS:
/* CSS content property */
.element::before {
content: "\0074DA"; /* 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=%E7%93%9A
MD5:
6c84af0f1061ffa4bc4b1bba28e021a6
SHA1:
1aaf760ae232df5a6a294508c122ce3161e20284
Base64:
55Oa