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