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