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