C:
char c = '\uC826';
printf("%c\n", c); // Output: 젦
JavaScript:
const char = '\uC826';
console.log(char); // Output: 젦
Java:
char c = '\uC826';
System.out.println(c); // Output: 젦
JSON:
{"text": "\uC826"} // Value: 젦
Python:
char = '\uC826'
print(char) # Output: 젦
Perl:
my $char = "\x{C826}";
print $char; # Output: 젦
PHP:
$char = "\x{C826}";
echo $char; // Output: 젦
Ruby:
char = "\u{C826}"
puts char # Output: 젦
Rust:
let c = '\u{C826}';
println!("{}", c); // Output: 젦
Go:
char := '\uC826'
fmt.Printf("%c\n", char) // Output: 젦
CSS:
/* CSS content property */
.element::before {
content: "\00C826"; /* 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%A6
MD5:
bbf48f8d5b0a4b2171d9fbd5156df303
SHA1:
112926ac905f314256dec72e56917adb7cf10dd1
Base64:
7KCm