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