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