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