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