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