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