C:
char c = '\uB720';
printf("%c\n", c); // Output: 뜠
JavaScript:
const char = '\uB720';
console.log(char); // Output: 뜠
Java:
char c = '\uB720';
System.out.println(c); // Output: 뜠
JSON:
{"text": "\uB720"} // Value: 뜠
Python:
char = '\uB720'
print(char) # Output: 뜠
Perl:
my $char = "\x{B720}";
print $char; # Output: 뜠
PHP:
$char = "\x{B720}";
echo $char; // Output: 뜠
Ruby:
char = "\u{B720}"
puts char # Output: 뜠
Rust:
let c = '\u{B720}';
println!("{}", c); // Output: 뜠
Go:
char := '\uB720'
fmt.Printf("%c\n", char) // Output: 뜠
CSS:
/* CSS content property */
.element::before {
content: "\00B720"; /* 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%9C%A0
MD5:
387caf6a647f4e54f355fa624b1ec69f
SHA1:
497394ad0ba06bb117a169f359774eaa0ce7f6a6
Base64:
65yg