C:
char c = '\uCB85';
printf("%c\n", c); // Output: 쮅
JavaScript:
const char = '\uCB85';
console.log(char); // Output: 쮅
Java:
char c = '\uCB85';
System.out.println(c); // Output: 쮅
JSON:
{"text": "\uCB85"} // Value: 쮅
Python:
char = '\uCB85'
print(char) # Output: 쮅
Perl:
my $char = "\x{CB85}";
print $char; # Output: 쮅
PHP:
$char = "\x{CB85}";
echo $char; // Output: 쮅
Ruby:
char = "\u{CB85}"
puts char # Output: 쮅
Rust:
let c = '\u{CB85}';
println!("{}", c); // Output: 쮅
Go:
char := '\uCB85'
fmt.Printf("%c\n", char) // Output: 쮅
CSS:
/* CSS content property */
.element::before {
content: "\00CB85"; /* 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%AE%85
MD5:
19438da2abe13ac677ea592d09468daf
SHA1:
8fa52d5b8c6b2f30f6aa8f0007043f0dc36e7854
Base64:
7K6F