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