C:
char c = '\u519A';
printf("%c\n", c); // Output: 冚
JavaScript:
const char = '\u519A';
console.log(char); // Output: 冚
Java:
char c = '\u519A';
System.out.println(c); // Output: 冚
JSON:
{"text": "\u519A"} // Value: 冚
Python:
char = '\u519A'
print(char) # Output: 冚
Perl:
my $char = "\x{519A}";
print $char; # Output: 冚
PHP:
$char = "\x{519A}";
echo $char; // Output: 冚
Ruby:
char = "\u{519A}"
puts char # Output: 冚
Rust:
let c = '\u{519A}';
println!("{}", c); // Output: 冚
Go:
char := '\u519A'
fmt.Printf("%c\n", char) // Output: 冚
CSS:
/* CSS content property */
.element::before {
content: "\00519A"; /* 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=%E5%86%9A
MD5:
3ff5baede464377265de1dfbe68619eb
SHA1:
8fe43d17452241dab0f982a1292971c18f11ddac
Base64:
5Yaa