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