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