C:
char c = '\uB6E2';
printf("%c\n", c); // Output: 뛢
JavaScript:
const char = '\uB6E2';
console.log(char); // Output: 뛢
Java:
char c = '\uB6E2';
System.out.println(c); // Output: 뛢
JSON:
{"text": "\uB6E2"} // Value: 뛢
Python:
char = '\uB6E2'
print(char) # Output: 뛢
Perl:
my $char = "\x{B6E2}";
print $char; # Output: 뛢
PHP:
$char = "\x{B6E2}";
echo $char; // Output: 뛢
Ruby:
char = "\u{B6E2}"
puts char # Output: 뛢
Rust:
let c = '\u{B6E2}';
println!("{}", c); // Output: 뛢
Go:
char := '\uB6E2'
fmt.Printf("%c\n", char) // Output: 뛢
CSS:
/* CSS content property */
.element::before {
content: "\00B6E2"; /* 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%9B%A2
MD5:
cc35299664aa4e0e3e82e27c6639a6d4
SHA1:
4d6eb6943d318ce641bc929ec48529f3fcbdb234
Base64:
65ui