C:
char c = '\uB5B9';
printf("%c\n", c); // Output: 떹
JavaScript:
const char = '\uB5B9';
console.log(char); // Output: 떹
Java:
char c = '\uB5B9';
System.out.println(c); // Output: 떹
JSON:
{"text": "\uB5B9"} // Value: 떹
Python:
char = '\uB5B9'
print(char) # Output: 떹
Perl:
my $char = "\x{B5B9}";
print $char; # Output: 떹
PHP:
$char = "\x{B5B9}";
echo $char; // Output: 떹
Ruby:
char = "\u{B5B9}"
puts char # Output: 떹
Rust:
let c = '\u{B5B9}';
println!("{}", c); // Output: 떹
Go:
char := '\uB5B9'
fmt.Printf("%c\n", char) // Output: 떹
CSS:
/* CSS content property */
.element::before {
content: "\00B5B9"; /* 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%96%B9
MD5:
5280341124ea61dae6db005bfd2ddf7f
SHA1:
f0e7cabe6da38600a863cf6ad36d0c12a755a92f
Base64:
65a5