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