C:
char c = '\uB6FE';
printf("%c\n", c); // Output: 뛾
JavaScript:
const char = '\uB6FE';
console.log(char); // Output: 뛾
Java:
char c = '\uB6FE';
System.out.println(c); // Output: 뛾
JSON:
{"text": "\uB6FE"} // Value: 뛾
Python:
char = '\uB6FE'
print(char) # Output: 뛾
Perl:
my $char = "\x{B6FE}";
print $char; # Output: 뛾
PHP:
$char = "\x{B6FE}";
echo $char; // Output: 뛾
Ruby:
char = "\u{B6FE}"
puts char # Output: 뛾
Rust:
let c = '\u{B6FE}';
println!("{}", c); // Output: 뛾
Go:
char := '\uB6FE'
fmt.Printf("%c\n", char) // Output: 뛾
CSS:
/* CSS content property */
.element::before {
content: "\00B6FE"; /* 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%BE
MD5:
5f097d84e1ae8d5f19240f74fea90fe1
SHA1:
7a95bd55517f8579de3c7802e957aff740d8f871
Base64:
65u+