C:
char c = '\uC7FB';
printf("%c\n", c); // Output: 쟻
JavaScript:
const char = '\uC7FB';
console.log(char); // Output: 쟻
Java:
char c = '\uC7FB';
System.out.println(c); // Output: 쟻
JSON:
{"text": "\uC7FB"} // Value: 쟻
Python:
char = '\uC7FB'
print(char) # Output: 쟻
Perl:
my $char = "\x{C7FB}";
print $char; # Output: 쟻
PHP:
$char = "\x{C7FB}";
echo $char; // Output: 쟻
Ruby:
char = "\u{C7FB}"
puts char # Output: 쟻
Rust:
let c = '\u{C7FB}';
println!("{}", c); // Output: 쟻
Go:
char := '\uC7FB'
fmt.Printf("%c\n", char) // Output: 쟻
CSS:
/* CSS content property */
.element::before {
content: "\00C7FB"; /* 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%9F%BB
MD5:
ab73bd1d9347231981d324cbe5776688
SHA1:
3888d3e274e8bc0c708a29cd7c1798d31c768ff7
Base64:
7J+7