C:
char c = '\uC789';
printf("%c\n", c); // Output: 잉
JavaScript:
const char = '\uC789';
console.log(char); // Output: 잉
Java:
char c = '\uC789';
System.out.println(c); // Output: 잉
JSON:
{"text": "\uC789"} // Value: 잉
Python:
char = '\uC789'
print(char) # Output: 잉
Perl:
my $char = "\x{C789}";
print $char; # Output: 잉
PHP:
$char = "\x{C789}";
echo $char; // Output: 잉
Ruby:
char = "\u{C789}"
puts char # Output: 잉
Rust:
let c = '\u{C789}';
println!("{}", c); // Output: 잉
Go:
char := '\uC789'
fmt.Printf("%c\n", char) // Output: 잉
CSS:
/* CSS content property */
.element::before {
content: "\00C789"; /* 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=%EC%9E%89
MD5:
088dc6ad63c4b58a263dc345b129481c
SHA1:
36100e3deaee59907a9ccd342ab0e5520a38e28c
Base64:
7J6J