C:
char c = '\uB910';
printf("%c\n", c); // Output: 뤐
JavaScript:
const char = '\uB910';
console.log(char); // Output: 뤐
Java:
char c = '\uB910';
System.out.println(c); // Output: 뤐
JSON:
{"text": "\uB910"} // Value: 뤐
Python:
char = '\uB910'
print(char) # Output: 뤐
Perl:
my $char = "\x{B910}";
print $char; # Output: 뤐
PHP:
$char = "\x{B910}";
echo $char; // Output: 뤐
Ruby:
char = "\u{B910}"
puts char # Output: 뤐
Rust:
let c = '\u{B910}';
println!("{}", c); // Output: 뤐
Go:
char := '\uB910'
fmt.Printf("%c\n", char) // Output: 뤐
CSS:
/* CSS content property */
.element::before {
content: "\00B910"; /* 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%A4%90
MD5:
962b724272e79320d8ce2b6044d5bdd6
SHA1:
a07c5c9c4b684dd97ed34a880ddd51d89a4e672d
Base64:
66SQ