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