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