C:
char c = '\uB5CA';
printf("%c\n", c); // Output: 뗊
JavaScript:
const char = '\uB5CA';
console.log(char); // Output: 뗊
Java:
char c = '\uB5CA';
System.out.println(c); // Output: 뗊
JSON:
{"text": "\uB5CA"} // Value: 뗊
Python:
char = '\uB5CA'
print(char) # Output: 뗊
Perl:
my $char = "\x{B5CA}";
print $char; # Output: 뗊
PHP:
$char = "\x{B5CA}";
echo $char; // Output: 뗊
Ruby:
char = "\u{B5CA}"
puts char # Output: 뗊
Rust:
let c = '\u{B5CA}';
println!("{}", c); // Output: 뗊
Go:
char := '\uB5CA'
fmt.Printf("%c\n", char) // Output: 뗊
CSS:
/* CSS content property */
.element::before {
content: "\00B5CA"; /* 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%97%8A
MD5:
12819bd994ca8556b078d3e33bded794
SHA1:
40ccb5d2004ec322e25f00c6c6267398a0ed23d2
Base64:
65eK