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