C:
char c = '\uB5EC';
printf("%c\n", c); // Output: 뗬
JavaScript:
const char = '\uB5EC';
console.log(char); // Output: 뗬
Java:
char c = '\uB5EC';
System.out.println(c); // Output: 뗬
JSON:
{"text": "\uB5EC"} // Value: 뗬
Python:
char = '\uB5EC'
print(char) # Output: 뗬
Perl:
my $char = "\x{B5EC}";
print $char; # Output: 뗬
PHP:
$char = "\x{B5EC}";
echo $char; // Output: 뗬
Ruby:
char = "\u{B5EC}"
puts char # Output: 뗬
Rust:
let c = '\u{B5EC}';
println!("{}", c); // Output: 뗬
Go:
char := '\uB5EC'
fmt.Printf("%c\n", char) // Output: 뗬
CSS:
/* CSS content property */
.element::before {
content: "\00B5EC"; /* 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=%EB%97%AC
MD5:
b92afe0d21da6f6eef405edc1126b13d
SHA1:
9c5957fe9de5d8c3b097d9e061b163d2aa7fad4e
Base64:
65es