C:
char c = '\uC97F';
printf("%c\n", c); // Output: 쥿
JavaScript:
const char = '\uC97F';
console.log(char); // Output: 쥿
Java:
char c = '\uC97F';
System.out.println(c); // Output: 쥿
JSON:
{"text": "\uC97F"} // Value: 쥿
Python:
char = '\uC97F'
print(char) # Output: 쥿
Perl:
my $char = "\x{C97F}";
print $char; # Output: 쥿
PHP:
$char = "\x{C97F}";
echo $char; // Output: 쥿
Ruby:
char = "\u{C97F}"
puts char # Output: 쥿
Rust:
let c = '\u{C97F}';
println!("{}", c); // Output: 쥿
Go:
char := '\uC97F'
fmt.Printf("%c\n", char) // Output: 쥿
CSS:
/* CSS content property */
.element::before {
content: "\00C97F"; /* 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%A5%BF
MD5:
e7bcdc91a892cfe8a6f70f55e6d49645
SHA1:
6f673a386558a795461713e6bbbaad264916993c
Base64:
7KW/