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