C:
char c = '\uCBEE';
printf("%c\n", c); // Output: 쯮
JavaScript:
const char = '\uCBEE';
console.log(char); // Output: 쯮
Java:
char c = '\uCBEE';
System.out.println(c); // Output: 쯮
JSON:
{"text": "\uCBEE"} // Value: 쯮
Python:
char = '\uCBEE'
print(char) # Output: 쯮
Perl:
my $char = "\x{CBEE}";
print $char; # Output: 쯮
PHP:
$char = "\x{CBEE}";
echo $char; // Output: 쯮
Ruby:
char = "\u{CBEE}"
puts char # Output: 쯮
Rust:
let c = '\u{CBEE}';
println!("{}", c); // Output: 쯮
Go:
char := '\uCBEE'
fmt.Printf("%c\n", char) // Output: 쯮
CSS:
/* CSS content property */
.element::before {
content: "\00CBEE"; /* 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%AF%AE
MD5:
1b97febdcaac76fb98fd9106dd567814
SHA1:
f34422855c4c3843378d630ef54a6a50302f7299
Base64:
7K+u