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