C:
char c = '\uC80B';
printf("%c\n", c); // Output: 젋
JavaScript:
const char = '\uC80B';
console.log(char); // Output: 젋
Java:
char c = '\uC80B';
System.out.println(c); // Output: 젋
JSON:
{"text": "\uC80B"} // Value: 젋
Python:
char = '\uC80B'
print(char) # Output: 젋
Perl:
my $char = "\x{C80B}";
print $char; # Output: 젋
PHP:
$char = "\x{C80B}";
echo $char; // Output: 젋
Ruby:
char = "\u{C80B}"
puts char # Output: 젋
Rust:
let c = '\u{C80B}';
println!("{}", c); // Output: 젋
Go:
char := '\uC80B'
fmt.Printf("%c\n", char) // Output: 젋
CSS:
/* CSS content property */
.element::before {
content: "\00C80B"; /* 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%A0%8B
MD5:
16033cab568a9fd418feb499cc880b95
SHA1:
8ab667d2335a87cff01322beed788850e2e44b9a
Base64:
7KCL