C:
char c = '\uB743';
printf("%c\n", c); // Output: 띃
JavaScript:
const char = '\uB743';
console.log(char); // Output: 띃
Java:
char c = '\uB743';
System.out.println(c); // Output: 띃
JSON:
{"text": "\uB743"} // Value: 띃
Python:
char = '\uB743'
print(char) # Output: 띃
Perl:
my $char = "\x{B743}";
print $char; # Output: 띃
PHP:
$char = "\x{B743}";
echo $char; // Output: 띃
Ruby:
char = "\u{B743}"
puts char # Output: 띃
Rust:
let c = '\u{B743}';
println!("{}", c); // Output: 띃
Go:
char := '\uB743'
fmt.Printf("%c\n", char) // Output: 띃
CSS:
/* CSS content property */
.element::before {
content: "\00B743"; /* 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%9D%83
MD5:
feb339cfb46a296523388035769fd52a
SHA1:
b6a80a748be80d41f8801e58938bc9a840efed69
Base64:
652D