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