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