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