C:
char c = '\uB65D';
printf("%c\n", c); // Output: 뙝
JavaScript:
const char = '\uB65D';
console.log(char); // Output: 뙝
Java:
char c = '\uB65D';
System.out.println(c); // Output: 뙝
JSON:
{"text": "\uB65D"} // Value: 뙝
Python:
char = '\uB65D'
print(char) # Output: 뙝
Perl:
my $char = "\x{B65D}";
print $char; # Output: 뙝
PHP:
$char = "\x{B65D}";
echo $char; // Output: 뙝
Ruby:
char = "\u{B65D}"
puts char # Output: 뙝
Rust:
let c = '\u{B65D}';
println!("{}", c); // Output: 뙝
Go:
char := '\uB65D'
fmt.Printf("%c\n", char) // Output: 뙝
CSS:
/* CSS content property */
.element::before {
content: "\00B65D"; /* 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%99%9D
MD5:
175cdcbd2afa86db9593432013ecf12d
SHA1:
d5ea6c0c701ffd08dcee93dc0143200e552543ce
Base64:
65md