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