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